@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@400;500&display=swap');

:root {
    --primary: #1B4D3E;
    /* Corporate Emerald */
    --primary-dark: #123329;
    --primary-light: #E9F2EF;
    --accent: #2ECC71;
    /* Vibrant Green for accents */
    --text-dark: #1A1A1A;
    --text-light: #4A5568;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --glass: rgba(255, 255, 255, 0.95);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

nav.scrolled {
    background: var(--glass);
    height: 70px;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.logo i {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-block;
}

/* --- Mobile Toggle --- */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.mobile-nav-toggle:hover {
    color: var(--accent);
}

.nav-links a.btn-primary {
    color: var(--white);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--primary-light);
}

/* --- Hero Section --- */
header.hero {
    background: linear-gradient(to bottom, #fff, var(--primary-light));
    padding-top: 180px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    color: var(--accent);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* --- Sections --- */
section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* --- Solution Section --- */
.solution {
    background: var(--primary);
    color: var(--white);
    padding: 100px 0;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.solution-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.solution-text h2 span {
    color: var(--accent);
}

.solution-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.check-list {
    margin-bottom: 2.5rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.check-list i {
    color: var(--accent);
}

.solution-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* --- Impact Highlights --- */
.impact-highlights {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.highlight-item i {
    font-size: 1.2rem;
    color: var(--accent);
}

/* --- Stats Section --- */
.stats {
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

/* --- Slider Styles --- */
.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.3);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* --- CTA Section --- */
.cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 120px 0;
}

.cta h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

/* --- Footer --- */
footer {
    padding: 80px 0 40px;
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.6);
}

footer .logo {
    color: var(--white);
    margin-bottom: 2rem;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

/* --- Animations --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Mobile Responsive --- */
@media (max-width: 992px) {

    .hero-content,
    .solution-content,
    .hero-content[style*="grid-template-columns: 1fr 1.2fr;"] {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .slide img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 2rem;
        gap: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        display: flex;
        /* Ensure it remains flex in desktop mode or display:none override */
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1rem;
        width: 100%;
        display: block;
    }

    .nav-links .btn {
        width: 100%;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    header.hero {
        padding-top: 140px;
    }
}

/* --- Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: flex-start;
    /* Üstten başlasın ki kaydırma düzgün olsun */
    justify-content: center;
    padding: 2rem 1rem;
    /* Mobilde kenarlardan boşluk */
    overflow-y: auto;
    /* Dış kapsayıcıda kaydırma desteği */
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    /* padding 3rem'den 2rem'e düşürüldü */
    border-radius: 20px;
    position: relative;
    max-height: 90vh;
    /* Ekranın %90'ını geçmesin */
    overflow-y: auto;
    /* İçerik taşarsa kaydırılabilsin */
    transform: translateY(30px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
    /* 2rem'den 1.5rem'e düşürüldü */
}

.modal-header h2 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.registration-form .form-group {
    margin-bottom: 1rem;
    /* 1.5rem'den 1rem'e düşürüldü */
}

.registration-form label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.registration-form input,
.registration-form select,
.registration-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.btn-block {
    width: 100%;
    margin-top: 1rem;
}

.form-success {
    text-align: center;
    padding: 2rem 0;
}

.form-success i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.form-success h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

@media (max-width: 576px) {
    .modal-container {
        padding: 2rem;
    }
}

/* --- Delete Modal Specifics --- */
.delete-modal {
    max-width: 400px;
    text-align: center;
}

.delete-icon {
    font-size: 3.5rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
    display: block;
}

.delete-modal h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn-delete-confirm {
    background: #e74c3c !important;
    border-color: #e74c3c !important;
}

.btn-delete-confirm:hover {
    background: #c0392b !important;
}

.flex-1 {
    flex: 1;
}

/* --- Map Section --- */
.map-section {
    background: var(--bg-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#map-container {
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

@media (max-width: 768px) {
    #map-container {
        height: 400px !important;
    }
}

/* --- News Page Styles --- */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 180px 0 80px;
    text-align: center;
    margin-bottom: 20px;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.news-section {
    padding: 40px 0 100px;
    min-height: 50vh;
}

.news-controls {
    margin-bottom: 3rem;
    display: flex;
    justify-content: flex-end;
}

.search-box {
    position: relative;
    max-width: 300px;
    width: 100%;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.search-box input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: 1px solid var(--border);
    border-radius: 30px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.2);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 3rem;
}

.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.news-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.news-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--bg-light);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.news-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--glass);
    backdrop-filter: blur(8px);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}

.news-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-title {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    line-height: 1.4;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.news-card:hover .news-title {
    color: var(--primary);
}

.news-summary {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    flex-grow: 1;
}

.news-read-more {
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-read-more i {
    transition: transform 0.3s ease;
}

.news-card:hover .news-read-more {
    color: var(--primary);
}

.news-card:hover .news-read-more i {
    transform: translateX(8px);
}

/* Common States */
.loading-state,
.error-state,
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
    background: var(--white);
    border-radius: 20px;
    border: 2px dashed var(--border);
}

.loading-state i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.error-state i,
.empty-state i {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.error-state p,
.empty-state p {
    font-size: 1.2rem;
}

/* --- News Detail Page --- */
.news-detail-section {
    padding: 140px 0 100px;
    min-height: 80vh;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 2.5rem;
    transition: var(--transition);
    font-size: 1.05rem;
}

.back-link:hover {
    color: var(--primary);
    transform: translateX(-8px);
}

.news-detail-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.article-header {
    padding: 4rem 4rem 0;
}

.article-category {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.article-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.article-meta {
    display: flex;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-item i {
    color: var(--primary);
}

.article-image {
    width: 100%;
    margin-top: 2.5rem;
    padding: 0 4rem;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    max-height: 500px;
    box-shadow: var(--shadow-md);
}

.article-body {
    padding: 3rem 4rem 4rem;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.article-body p {
    margin-bottom: 1.8rem;
}

.article-body blockquote {
    border-left: 5px solid var(--accent);
    padding-left: 2rem;
    font-style: italic;
    color: var(--text-light);
    margin: 2.5rem 0;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0 12px 12px 0;
    font-size: 1.25rem;
    line-height: 1.6;
}

.article-body strong {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 992px) {
    .page-header h1 {
        font-size: 2.8rem;
    }

    .article-title {
        font-size: 2.4rem;
    }

    .article-header,
    .article-image,
    .article-body {
        padding: 2.5rem;
        padding-bottom: 0;
    }

    .article-body {
        padding-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .article-header,
    .article-image,
    .article-body {
        padding: 1.5rem;
        padding-bottom: 0;
    }

    .article-body {
        padding-bottom: 1.5rem;
    }

    .news-detail-section {
        padding-top: 120px;
    }

    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }
}

/* --- Admin Panel Styles --- */
.admin-body {
    background-color: var(--bg-light);
}

.admin-header {
    padding: 140px 0 60px;
    margin-bottom: 0;
}

.admin-dashboard {
    padding: 40px 0 100px;
}

.admin-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.news-table-card h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    background: var(--bg-light);
}

.admin-table tbody tr {
    transition: var(--transition);
}

.admin-table tbody tr:hover {
    background: var(--primary-light);
}

.admin-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.admin-td-title {
    font-weight: 600;
    color: var(--text-dark);
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-badge {
    background: rgba(46, 204, 113, 0.15);
    color: var(--primary-dark);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.admin-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-light);
    color: var(--text-light);
}

.btn-edit:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-delete:hover {
    background: #e74c3c;
    color: var(--white);
}

.admin-modal {
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
}

.admin-modal .form-group {
    margin-bottom: 1.2rem;
}

.admin-modal textarea {
    resize: vertical;
}