:root {
    --teal-500: #008080;
    --teal-600: #006666;
    --teal-700: #004d4d;
    --teal-100: #ccfbf1;
    --star-active: #ffc107;
    --star-inactive: #e4e5e9;
    --teal-400: #2dd4bf;
    --teal-300: #5eead4;
    --teal-50: #f0fdfa;
}
/* رنگ‌های سفارشی */
.bg-teal-500 {
    background-color: var(--teal-500) !important;
}
.bg-teal-600 {
    background-color: var(--teal-600) !important;
}
.bg-teal-700 {
    background-color: var(--teal-700) !important;
}
.text-teal-500 {
    color: var(--teal-500) !important;
}

a.text-teal:hover {
    color: var(--teal-400) !important;
}

.btn-outline-teal:hover {
    background-color: var(--teal-500);
    color: white;
}

/* استایل نوار ناوبری */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin: 0 2px;
    transition: all 0.3s;
}

.nav-link:hover, .nav-link.active {
    background-color: rgba(255, 255, 255, 0.15);
}

/* استایل منوهای آبشاری */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: var(--teal-500);
    color: white !important;
}

/* استایل فوتر */
footer {
    background-color: var(--teal-700);
    margin-top: 3rem;
}

footer a:hover {
    color: #e0e0e0 !important;
    text-decoration: underline !important;
}

/* رسپانسیو */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    footer .col-md-4 {
        margin-bottom: 1.5rem;
    }
}

.carousel {
    max-height: 600px;
    overflow: hidden;
}

.carousel-item img {
    object-fit: cover;
    height: 500px;
}

.carousel-caption {
    right: 10%;
    left: 10%;
    bottom: 3rem;
}

/* دکمه‌های سفارشی */
.btn-teal {
    background-color: var(--teal-500);
    color: white;
}

.btn-teal:hover {
    background-color: var(--teal-600);
    color: white;
}

/* کارت‌های خبر */
.news-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* دایره‌های آیکون */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* رنگ‌های اضافی */
.bg-teal-50 {
    background-color: rgba(0, 128, 128, 0.05);
}
.bg-teal-100 {
    background-color: rgba(0, 128, 128, 0.1);
}
.border-teal {
    border: 1px solid rgba(0, 128, 128, 0.2);
}

.logout-icon {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-teal-500 {
    background-color: #008080;
    color: white;
}

.btn-teal-500:hover {
    background-color: #006666;
    color: white;
}

.btn-outline-teal {
    border: 2px solid #008080;
    color: #008080;
}

.btn-outline-teal:hover {
    background-color: #008080;
    color: white;
}



/*python manage.py collectstatic --noinput*/


/*admin.site.site_header = "پنل مدیریت"*/