body{
    font-family: Arial, sans-serif;
    background:#f8f8f8;
    margin:0;
    color:#222;
}

.topbar{
    background:#ffffff;
    border-bottom:1px solid #ddd;
    padding:15px 30px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    height:60px;
}

.lang-switch a{
    text-decoration:none;
    color:#8c6b3f;
    font-weight:bold;
    margin-left:10px;
}

.container{
    width:95%;
    max-width:1400px;
    margin:30px auto;
}

.card{
    background:#fff;
    border-radius:12px;
    padding:25px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.btn{
    background:#8c6b3f;
    color:white;
    border:none;
    padding:12px 25px;
    border-radius:8px;
    cursor:pointer;
}

.btn:hover{
    opacity:.9;
}

input,
select{
    width:100%;
    padding:10px;
    border:1px solid #ccc;
    border-radius:8px;
    margin-top:5px;
}
textarea{
    width:100%;
    padding:10px;
    border:1px solid #ccc;
    border-radius:8px;
    min-height:100px;
}

.form-group{
    margin-bottom:15px;
}

.title{
    color:#8c6b3f;
    margin-bottom:20px;
}
.dashboard{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.menu-card{
    background:#fff;
    border-radius:12px;
    padding:25px;
    text-decoration:none;
    color:#333;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    min-height:120px;
}

.menu-card:hover{
    transform:translateY(-3px);
}

.menu-title{
    font-size:22px;
    font-weight:bold;
    color:#8c6b3f;
    margin-bottom:10px;
}
/* Layout */
.layout{
    display:flex;
    min-height:calc(100vh - 92px);
}

.sidebar{
    width:260px;
    background:#1f1f1f;
    color:white;
    padding:20px;
}

.sidebar-title{
    font-size:22px;
    font-weight:bold;
    color:#b8945a;
    margin-bottom:10px;
}

.sidebar-subtitle{
    font-size:12px;
    color:#999;
    margin-bottom:25px;
}

.sidebar a{
    display:block;
    padding:12px 15px;
    margin-bottom:8px;
    border-radius:8px;
    text-decoration:none;
    color:white;
    transition:0.2s;
}

.sidebar a:hover{
    background:#b8945a;
    color:white;
}

.content{
    flex:1;
    padding:30px;
}

.page-card{
    background:white;
    border-radius:16px;
    padding:30px;
    box-shadow:0 4px 18px rgba(0,0,0,.08);
}
/* Tables */

.table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}

.table th{
    background:#8c6b3f;
    color:white;
    padding:12px;
    text-align:left;
}

.table td{
    padding:12px;
    border-bottom:1px solid #eee;
}

.table tr:hover{
    background:#fafafa;
}

/* Badges */

.badge{
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:bold;
}

.badge-active{
    background:#d4edda;
    color:#155724;
}

.badge-disabled{
    background:#f8d7da;
    color:#721c24;
}

/* Alerts */

.alert-success{
    background:#d4edda;
    color:#155724;
    padding:12px;
    border-radius:8px;
    margin-bottom:15px;
}

.alert-error{
    background:#f8d7da;
    color:#721c24;
    padding:12px;
    border-radius:8px;
    margin-bottom:15px;
}

/* Small buttons */

.btn-small{
    padding:8px 14px;
    border-radius:6px;
    text-decoration:none;
    color:white;
    font-size:13px;
}

.btn-disable{
    background:#dc3545;
}

.btn-enable{
    background:#28a745;
}
.topbar{
    background:white;
    border-bottom:1px solid #e5e5e5;
    padding:15px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.topbar-left{
    display:flex;
    align-items:center;
    gap:15px;
}

.brand-title{
    font-size:24px;
    font-weight:bold;
    color:#b8945a;
}

.brand-subtitle{
    font-size:13px;
    color:#777;
}

.logo{
    height:55px;
}
/* Login Page */

.login-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f5f5f5;
}

.login-card{
    width:100%;
    max-width:450px;
    background:#fff;
    padding:40px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
}

.login-logo{
    text-align:center;
    margin-bottom:20px;
}

.login-logo img{
    max-width:220px;
}

.login-title{
    text-align:center;
    color:#8c6b3f;
    font-size:28px;
    font-weight:bold;
    margin-bottom:25px;
}

.login-footer{
    text-align:center;
    margin-top:20px;
}

.login-footer a{
    color:#8c6b3f;
    text-decoration:none;
    font-weight:bold;
}

.btn-login{
    width:100%;
    background:#8c6b3f;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
}

.btn-login:hover{
    opacity:.9;
}