/* include/style.css */
body {
    background-color: #f4f6f9;
    font-size: 0.95rem;
}
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.card {
    border-radius: 10px;
    transition: transform 0.2s;
}
/* ستايل لوحة المدير - السايدبار */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}
.admin-sidebar {
    width: 260px;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
}
.admin-sidebar a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 5px;
}
.admin-sidebar a:hover, .admin-sidebar a.active {
    background: #34495e;
    color: #fff;
}
.admin-content {
    flex: 1;
    padding: 30px;
    background: #f8f9fa;
}
@media (max-width: 768px) {
    .admin-wrapper { flex-direction: column; }
    .admin-sidebar { width: 100%; min-height: auto; }
}

/* ضبط أبعاد الشعار الرسمي في الهيدر لمنع التشوه */
.site-logo-img {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: inline-block;
}

/* تعديل طفيف للموبايل ليبقى الهيدر متناسقاً */
@media (max-width: 576px) {
    .site-logo-img {
        height: 38px;
        max-width: 140px;
    }
}