/* TND Network - Yeni Tema CSS */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Root Variables */
:root {
    --primary-color: #dc3545; /* Kırmızı */
    --secondary-color: #6c757d; /* Gri */
    --light-bg: #f8f9fa; /* Açık gri arka plan */
    --dark-nav: #343a40; /* Koyu navigasyon */
    --text-dark: #495057; /* Koyu metin */
    --white: #ffffff;
    --border-light: #dee2e6;
    
    /* Yeni renkler */
    --logo-color: #575b60;
    --login-bg: #303a48;
    --search-bg: #c2c3c8;
    --menu-bg: #162027;
}

/* Genel Body Ayarları */
body {
    font-family: 'Bai Jamjuree', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
}

/* Header Bölümü */
.new-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 15px 0;
}

.new-header .logo-container {
    display: flex;
    align-items: center;
}


.new-header .logo-text-wrapper {
    display: flex;
    flex-direction: column;
    margin-left: 15px; /* Boşluk logo-text'ten buraya taşındı */
}

.new-header .logo-text {
    line-height: 0.7; /* Satır yüksekliği azaltıldı */
    margin-left: 0; /* Boşluk wrapper'a taşındığı için kaldırıldı */
}

.new-header .logo-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px; /* Daha küçük punto */
    font-weight: 500;
    text-align: center;
    font-style: italic;
    color: #6c757d; /* Daha soluk bir renk (var(--secondary-color)) */
    margin-top: 4px; /* Üstteki metinle arasına boşluk */
    letter-spacing: normal; /* Harf aralığı normallendi */
}

.new-header .logo-container img {
    height: 90px;
    width: auto;
}

.new-header .logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--logo-color);
    letter-spacing: 1px;
}

/* Sağ üst butonlar */
.new-header .top-buttons {
    display: flex;
    gap: 0;
    align-items: center;
}

.new-header .btn-login {
    background-color: var(--login-bg);
    color: var(--white);
    border: none;
    padding: 7px 30px;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.new-header .btn-search {
    background-color: var(--search-bg);
    color: var(--text-dark);
    border: none;
    padding: 7px 30px;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.new-header .btn-login:hover {
    background-color: #3a4554;
    color: var(--white);
}

.new-header .btn-search:hover {
    background-color: #b8b9be;
    color: var(--text-dark);
}

/* Navigasyon */
.new-navigation {
    background-color: var(--menu-bg) !important;
    border: none;
    padding: 0;
}

.new-navigation .container {
    padding: 0;
}

.navbar-nav li {
    padding-left: 10px;
    padding-right: 0px;
    border-right: none;
}

.new-navigation .navbar-nav .nav-item .nav-link {
    color: var(--white) !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    padding: 10px 20px !important;
    transition: all 0.3s ease;
}

.new-navigation .navbar-nav .nav-item .nav-link:hover {
    color: var(--white) !important;
    background-color: rgba(255,255,255,0.1) !important;
}

.new-navigation .dropdown-menu {
    background-color: var(--menu-bg) !important;
    border: none !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.new-navigation .dropdown-item {
    color: var(--white) !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    padding: 10px 20px !important;
}

.new-navigation .dropdown-item:hover {
    background-color: rgba(255,255,255,0.1) !important;
    color: var(--white) !important;
}

.new-navigation .dropdown-divider {
    border-color: rgba(255,255,255,0.1) !important;
}

.new-navigation .dropdown-toggle::after {
    color: var(--white) !important;
}

/* Hero Section - Slider */
.new-hero-slider {
    background: linear-gradient(135deg, #e8e9ea 0%, #f5f6f7 100%);
    padding: 60px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-kidneys-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-text-section {
    flex: 1;
    padding-left: 40px;
}

.hero-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #5a6c7d;
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero-description {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #7a8a9a;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design for Hero */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        gap: 40px;
        max-width: 100%;
    }
    
    .hero-main-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text-section {
        padding-left: 0;
        order: 2;
    }
    
    .hero-image-section {
        order: 1;
    }
    
    .hero-main-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-kidneys-image {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .new-hero-slider {
        padding: 40px 0;
        min-height: 400px;
    }
    
    .hero-content-wrapper {
        gap: 30px;
    }
    
    .hero-main-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-kidneys-image {
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-kidneys-image {
        max-width: 250px;
    }
}

/* Proje Kartları Bölümü */
.new-projects-section {
    background-color: var(--light-bg);
    padding: 80px 0;
    position: relative;
}

.new-projects-section::before {
    display: none;
}

.new-projects-section .container {
    position: relative;
    z-index: 2;
}

.new-project-card {
    background-image: url('../images/tnd-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.45);
    background-blend-mode: overlay;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: 15px;
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Kart üzerinde beyaz overlay */
.new-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    z-index: -1;
}

.new-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.new-project-card:hover::before {
    background: rgba(255, 255, 255, 0.95);
}

.new-project-card .card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.4;
}

.new-project-card .card-description {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Kartlar için özel düzen */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 2 kartlı düzen için özel stil */
.projects-grid.two-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
}

.projects-grid.two-cards .new-project-card {
    min-height: 200px;
}

/* Responsive Design for Projects */
@media (max-width: 992px) {
    .projects-grid,
    .projects-grid.two-cards {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .new-projects-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .new-project-card {
        padding: 30px 20px;
    }
    
    .new-project-card .card-title {
        font-size: 18px;
    }
    
    .new-project-card .card-description {
        font-size: 14px;
    }
    
    .new-projects-section {
        padding: 40px 0;
    }
}

/* Footer */
.new-footer {
    background-color: var(--menu-bg);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.new-footer .footer-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.new-footer .footer-menu li {
    position: relative;
    border-right: none;
}


.new-footer .footer-menu a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.3s ease;
}

.new-footer .footer-menu a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.new-footer .footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

/* Proje Detay Sayfası Stilleri */
.project-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--light-bg);
}

.project-header-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    border: none;
    position: relative;
    overflow: hidden;
}

.project-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #162127, #373361);
}

.project-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.project-content-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 40px;
    margin-bottom: 30px;
    border: none;
    position: relative;
}

.project-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 30px;
}

.project-instructions {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.project-admins {
    margin-bottom: 30px;
}

.project-admins strong {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 15px;
}

.project-admins ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-admins li {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-color);
    padding: 8px 15px;
    background: #f1f3f4;
    border-radius: 25px;
    margin-bottom: 8px;
    display: inline-block;
    margin-right: 10px;
}

.project-admins li::before {
    margin-right: 8px;
}

.project-btn {
    background: linear-gradient(135deg, var(--primary-color), #e74c3c);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.project-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
    color: var(--white);
    text-decoration: none;
}

.project-btn::before {
    font-size: 16px;
}

.btn-actions {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-detail-container {
        padding: 20px 15px;
    }
    
    .project-header-card,
    .project-content-card {
        padding: 25px 20px;
    }
    
    .project-title {
        font-size: 24px;
    }
    
    .project-description {
        font-size: 15px;
    }
    
    .project-instructions {
        padding: 20px 15px;
        font-size: 14px;
    }
    
    .project-admins li {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .project-title {
        font-size: 20px;
    }
    
    .project-description {
        font-size: 14px;
    }
    
    .project-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .new-footer .footer-menu {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .new-footer .footer-menu li:not(:last-child)::after {
        display: none;
    }
    
    .new-footer .footer-text {
        font-size: 12px;
        padding: 0 20px;
    }
    
    .new-footer {
        padding: 25px 0;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .new-hero .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .new-hero .hero-text {
        padding-left: 0;
    }
    
    .new-hero .hero-title {
        font-size: 36px;
    }
    
    .new-hero .hero-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .new-header .top-buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    .new-hero {
        padding: 40px 0;
    }
    
    .new-hero .hero-title {
        font-size: 28px;
    }
    
    .new-hero .hero-subtitle {
        font-size: 18px;
    }
    
    .new-projects {
        padding: 40px 0;
    }
}

.content-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.content-header-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    border: none;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease 0.1s forwards;
}

.content-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #162127, #373361);
}

.content-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.content-body-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 40px;
    border: none;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease 0.3s forwards;
}

.content-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.7;
}

/* İçerik elementleri için stiller */
.content-text h1,
.content-text h2,
.content-text h3,
.content-text h4,
.content-text h5,
.content-text h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-text h1 { font-size: 24px; }
.content-text h2 { font-size: 22px; }
.content-text h3 { font-size: 20px; }
.content-text h4 { font-size: 18px; }
.content-text h5 { font-size: 16px; }
.content-text h6 { font-size: 14px; }

.content-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.content-text ul,
.content-text ol {
    margin: 20px 0;
    padding-left: 25px;
}

.content-text li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-text a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.content-text a:hover {
    border-bottom: 1px solid var(--primary-color);
    text-decoration: none;
}

.content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 20px 0;
    display: block;
}

.content-text blockquote {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: var(--secondary-color);
}

.content-text code {
    background: #f1f3f4;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--primary-color);
}

.content-text pre {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid #e9ecef;
}

.content-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.content-text th {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-align: left;
}

.content-text td {
    padding: 12px 15px;
    border-bottom: 1px solid #e9ecef;
    font-family: 'Poppins', sans-serif;
}

.content-text tr:hover {
    background-color: #f8f9fa;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-detail-container {
        padding: 20px 15px;
    }
    
    .content-header-card,
    .content-body-card {
        padding: 25px 20px;
    }
    
    .content-title {
        font-size: 24px;
    }
    
    .content-text {
        font-size: 15px;
    }
    
    .content-text h1 { font-size: 22px; }
    .content-text h2 { font-size: 20px; }
    .content-text h3 { font-size: 18px; }
    .content-text h4 { font-size: 16px; }
    
    .content-text table {
        font-size: 14px;
    }
    
    .content-text th,
    .content-text td {
        padding: 8px 10px;
    }
}

@media (max-width: 576px) {
    .content-title {
        font-size: 20px;
    }
    
    .content-text {
        font-size: 14px;
    }
    
    .content-header-card,
    .content-body-card {
        padding: 20px 15px;
    }
    
    .content-text table {
        font-size: 12px;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
    
    .content-text blockquote {
        padding: 15px 20px;
        margin: 20px 0;
    }
}

.projects-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.projects-header-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    border: none;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease 0.1s forwards;
}

.projects-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #162127, #373361);
}

.projects-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.projects-content-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 40px;
    border: none;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease 0.3s forwards;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.project-item {
    padding: 25px 0;
    border-bottom: 1px dotted #cccccc;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    animation: slideInUp 0.4s ease forwards;
}

.project-item:nth-child(1) { animation-delay: 0.5s; }
.project-item:nth-child(2) { animation-delay: 0.6s; }
.project-item:nth-child(3) { animation-delay: 0.7s; }
.project-item:nth-child(4) { animation-delay: 0.8s; }
.project-item:nth-child(5) { animation-delay: 0.9s; }
.project-item:nth-child(n+6) { animation-delay: 1s; }

.project-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.project-item:hover {
    background: rgba(22, 33, 39, 0.02);
    padding-left: 15px;
    margin-left: -15px;
    margin-right: -15px;
    border-radius: 10px;
}

.project-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.project-icon {
    color: #162127;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.project-item:hover .project-icon {
    color: #373361;
    transform: translateX(5px);
}

.project-item-title {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.project-item-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.project-item-title a:hover {
    color: #162127;
    text-decoration: none;
}

.project-item-title a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #162127, #373361);
    transition: width 0.3s ease;
}

.project-item:hover .project-item-title a::after {
    width: 100%;
}

.project-meta {
    margin-left: 33px;
    padding-top: 10px;
}

.project-description {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.project-dates {
    margin-top: 10px;
}

.date-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: var(--secondary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .projects-list-container {
        padding: 20px 15px;
    }
    
    .projects-header-card,
    .projects-content-card {
        padding: 25px 20px;
    }
    
    .projects-title {
        font-size: 24px;
    }
    
    .project-item-title {
        font-size: 18px;
    }
    
    .project-description {
        font-size: 14px;
    }
    
    .project-meta {
        margin-left: 15px;
    }
    
    .project-header {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .projects-title {
        font-size: 20px;
    }
    
    .projects-header-card,
    .projects-content-card {
        padding: 20px 15px;
    }
    
    .project-item {
        padding: 20px 0;
    }
    
    .project-item-title {
        font-size: 16px;
    }
    
    .project-description {
        font-size: 13px;
    }
    
    .project-meta {
        margin-left: 0;
    }
    
    .project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .project-icon {
        font-size: 16px;
    }
    
    .date-badge {
        font-size: 12px;
        padding: 4px 12px;
    }
}

.projects-list:empty::after {
    content: 'Henüz proje bulunmamaktadır.';
    display: block;
    text-align: center;
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    padding: 40px 20px;
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.search-header-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    border: none;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease 0.1s forwards;
}

.search-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #162127, #373361);
}

.search-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.search-content-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 40px;
    border: none;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease 0.3s forwards;
}

.search-form-section {
    margin-bottom: 40px;
}

.modern-search-form {
    max-width: 800px;
    margin: 0 auto;
}

.search-fields {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.search-group {
    margin-bottom: 0;
}

.search-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.field-icon {
    font-size: 16px;
}

.search-input,
.search-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background: #fafbfc;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.search-input:focus,
.search-select:focus {
    outline: none;
    border-color: #162127;
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(22, 33, 39, 0.1);
    transform: translateY(-1px);
}

.search-select {
    cursor: pointer;
}

.search-actions {
    text-align: center;
}

.modern-search-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #162127, #373361);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 33, 39, 0.3);
}

.modern-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 33, 39, 0.4);
    background: linear-gradient(135deg, #1a252c, #3f3d6b);
}

.btn-icon {
    font-size: 18px;
}

/* Arama Sonuçları */
.search-results-section {
    border-top: 1px solid #e9ecef;
    padding-top: 30px;
    margin-top: 30px;
}

.results-header {
    margin-bottom: 25px;
}

.results-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.results-icon {
    font-size: 22px;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.result-item {
    padding: 25px 0;
    border-bottom: 1px dotted #cccccc;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    animation: slideInUp 0.4s ease forwards;
}

.result-item:nth-child(1) { animation-delay: 0.5s; }
.result-item:nth-child(2) { animation-delay: 0.6s; }
.result-item:nth-child(3) { animation-delay: 0.7s; }
.result-item:nth-child(4) { animation-delay: 0.8s; }
.result-item:nth-child(5) { animation-delay: 0.9s; }
.result-item:nth-child(n+6) { animation-delay: 1s; }

.result-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.result-item:hover {
    background: rgba(22, 33, 39, 0.02);
    padding-left: 15px;
    margin-left: -15px;
    margin-right: -15px;
    border-radius: 10px;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.result-icon {
    color: #162127;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.result-item:hover .result-icon {
    color: #373361;
    transform: translateX(5px);
}

.result-item-title {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.result-item-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.result-item-title a:hover {
    color: #162127;
    text-decoration: none;
}

.result-item-title a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #162127, #373361);
    transition: width 0.3s ease;
}

.result-item:hover .result-item-title a::after {
    width: 100%;
}

.result-meta {
    margin-left: 33px;
    padding-top: 10px;
}

.result-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.result-dates {
    margin-top: 10px;
}

.date-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: var(--secondary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

/* Sonuç Bulunamadı */
.no-results {
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid #e9ecef;
    margin-top: 30px;
}

.no-results-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.no-results p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--secondary-color);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-container {
        padding: 20px 15px;
    }
    
    .search-header-card,
    .search-content-card {
        padding: 25px 20px;
    }
    
    .search-title {
        font-size: 24px;
    }
    
    .search-fields {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .results-title {
        font-size: 18px;
    }
    
    .result-item-title {
        font-size: 16px;
    }
    
    .result-description {
        font-size: 13px;
    }
    
    .result-meta {
        margin-left: 15px;
    }
    
    .result-header {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .search-title {
        font-size: 20px;
    }
    
    .search-header-card,
    .search-content-card {
        padding: 20px 15px;
    }
    
    .search-input,
    .search-select {
        padding: 12px 15px;
    }
    
    .modern-search-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }
    
    .result-meta {
        margin-left: 0;
    }
    
    .result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .result-icon {
        font-size: 16px;
    }
    
    .date-badge {
        font-size: 11px;
        padding: 4px 12px;
    }
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 20px;
    animation: fadeIn 0.8s ease forwards;
}

.login-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 50px;
    width: 100%;
    max-width: 450px;
    border: none;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: slideInScale 0.8s ease 0.2s forwards;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #162127, #373361);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.login-form-section {
    width: 100%;
}

.modern-login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.login-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0;
}

.login-input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background: #fafbfc;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-input:focus {
    outline: none;
    border-color: #162127;
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(22, 33, 39, 0.1);
    transform: translateY(-2px);
}

.login-input::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.login-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    border: none;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da, #f1b0b7);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.login-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.login-btn {
    padding: 18px 30px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.login-btn.primary {
    background: linear-gradient(135deg, #162127, #373361);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(22, 33, 39, 0.3);
}

.login-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 33, 39, 0.4);
    background: linear-gradient(135deg, #1a252c, #3f3d6b);
    color: var(--white);
    text-decoration: none;
}

.login-btn.secondary {
    background: transparent;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

.login-btn.secondary:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #495057;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Input focus animasyonu */
@keyframes inputFocus {
    0% {
        box-shadow: 0 0 0 0 rgba(22, 33, 39, 0.3);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(22, 33, 39, 0.1);
    }
    100% {
        box-shadow: 0 0 0 4px rgba(22, 33, 39, 0.1);
    }
}

.login-input:focus {
    animation: inputFocus 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-container {
        padding: 20px 15px;
        min-height: 100vh;
    }
    
    .login-card {
        padding: 40px 30px;
        max-width: none;
        margin: 0;
    }
    
    .login-title {
        font-size: 28px;
    }
    
    .login-input {
        padding: 16px 20px;
        font-size: 16px; /* iOS zoom önleme */
    }
    
    .login-btn {
        padding: 16px 25px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .login-card {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .login-title {
        font-size: 24px;
    }
    
    .login-input {
        padding: 14px 18px;
    }
    
    .login-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .alert {
        padding: 12px 15px;
        font-size: 13px;
    }
}

/* Loading state */
.login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.login-btn:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(22, 33, 39, 0.3);
}

/* Form validation */
.login-input:invalid {
    border-color: #dc3545;
}

.login-input:valid {
    border-color: #28a745;
}

/* Autofill styles */
.login-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #fafbfc inset !important;
    -webkit-text-fill-color: var(--text-dark) !important;
}

.login-input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px var(--white) inset !important;
}

.password-change-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.password-header-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    border: none;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease 0.1s forwards;
}

.password-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #162127, #373361);
}

.password-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.password-content-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 40px;
    border: none;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease 0.3s forwards;
}

.password-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    border: none;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da, #f1b0b7);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.password-form-section {
    max-width: 600px;
    margin: 0 auto;
}

.modern-password-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.password-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.password-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0;
}

.password-input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background: #fafbfc;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.password-input:focus {
    outline: none;
    border-color: #162127;
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(22, 33, 39, 0.1);
    transform: translateY(-2px);
}

.password-input::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

/* Şifre Gücü Göstergesi */
.password-strength {
    margin-top: 10px;
}

.strength-bar {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.strength-text {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--secondary-color);
}

/* Şifre Eşleşme Kontrolü */
.password-match {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    margin-top: 8px;
    min-height: 18px;
}

.password-match.match {
    color: #28a745;
}

.password-match.no-match {
    color: #dc3545;
}

/* Şifre Gereksinimleri */
.password-requirements {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #162127;
}

.password-requirements h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 15px 0;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.requirement {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--secondary-color);
    padding-left: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.requirement::before {
    content: '○';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.requirement.valid {
    color: #28a745;
}

.requirement.valid::before {
    content: '●';
    color: #28a745;
}

/* Butonlar */
.password-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.password-btn {
    flex: 1;
    padding: 18px 30px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.password-btn.primary {
    background: linear-gradient(135deg, #162127, #373361);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(22, 33, 39, 0.3);
}

.password-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 33, 39, 0.4);
    background: linear-gradient(135deg, #1a252c, #3f3d6b);
    color: var(--white);
    text-decoration: none;
}

.password-btn.secondary {
    background: transparent;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

.password-btn.secondary:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #495057;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .password-change-container {
        padding: 20px 15px;
    }
    
    .password-header-card,
    .password-content-card {
        padding: 25px 20px;
    }
    
    .password-title {
        font-size: 24px;
    }
    
    .password-input {
        padding: 16px 20px;
        font-size: 16px;
    }
    
    .password-btn {
        padding: 16px 25px;
        font-size: 16px;
    }
    
    .password-actions {
        flex-direction: column;
    }
    
    .requirements-list {
        gap: 6px;
    }
    
    .requirement {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .password-title {
        font-size: 20px;
    }
    
    .password-header-card,
    .password-content-card {
        padding: 20px 15px;
    }
    
    .password-input {
        padding: 14px 18px;
    }
    
    .password-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .alert {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .password-requirements {
        padding: 15px;
    }
}

/* Form validation */
.password-input:invalid {
    border-color: #dc3545;
}

.password-input:valid {
    border-color: #28a745;
}

/* Loading state */
.password-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.password-btn:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(22, 33, 39, 0.3);
}
.reset-password-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 20px;
    animation: fadeIn 0.8s ease forwards;
}

.reset-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 50px;
    width: 100%;
    max-width: 500px;
    border: none;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: slideInScale 0.8s ease 0.2s forwards;
}

.reset-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #162127, #373361);
}

.reset-header {
    text-align: center;
    margin-bottom: 40px;
}

.reset-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.reset-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.5;
}

.reset-form-section {
    width: 100%;
    margin-bottom: 30px;
}

.modern-reset-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reset-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reset-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0;
}

.reset-input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background: #fafbfc;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.reset-input:focus {
    outline: none;
    border-color: #162127;
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(22, 33, 39, 0.1);
    transform: translateY(-2px);
}

.reset-input::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.reset-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    border: none;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da, #f1b0b7);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.reset-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.reset-btn {
    padding: 18px 30px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.reset-btn.primary {
    background: linear-gradient(135deg, #162127, #373361);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(22, 33, 39, 0.3);
}

.reset-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 33, 39, 0.4);
    background: linear-gradient(135deg, #1a252c, #3f3d6b);
    color: var(--white);
    text-decoration: none;
}

.reset-links {
    text-align: center;
}

.reset-link {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.reset-link:hover {
    color: #162127;
    border-bottom: 1px solid #162127;
    text-decoration: none;
}

/* Bilgi Kutusu */
.reset-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid #162127;
}

.info-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 15px 0;
}

.info-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-content li {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--secondary-color);
    padding-left: 20px;
    position: relative;
}

.info-content li::before {
    content: '1';
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    background: #162127;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content li:nth-child(1)::before { content: '1'; }
.info-content li:nth-child(2)::before { content: '2'; }
.info-content li:nth-child(3)::before { content: '3'; }
.info-content li:nth-child(4)::before { content: '4'; }

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Input focus animasyonu */
@keyframes inputFocus {
    0% {
        box-shadow: 0 0 0 0 rgba(22, 33, 39, 0.3);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(22, 33, 39, 0.1);
    }
    100% {
        box-shadow: 0 0 0 4px rgba(22, 33, 39, 0.1);
    }
}

.reset-input:focus {
    animation: inputFocus 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reset-password-container {
        padding: 20px 15px;
        min-height: 100vh;
    }
    
    .reset-card {
        padding: 40px 30px;
        max-width: none;
        margin: 0;
    }
    
    .reset-title {
        font-size: 28px;
    }
    
    .reset-description {
        font-size: 15px;
    }
    
    .reset-input {
        padding: 16px 20px;
        font-size: 16px; /* iOS zoom önleme */
    }
    
    .reset-btn {
        padding: 16px 25px;
        font-size: 16px;
    }
    
    .reset-info {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .reset-card {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .reset-title {
        font-size: 24px;
    }
    
    .reset-description {
        font-size: 14px;
    }
    
    .reset-input {
        padding: 14px 18px;
    }
    
    .reset-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .alert {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .info-content h4 {
        font-size: 15px;
    }
    
    .info-content li {
        font-size: 13px;
    }
}

/* Loading state */
.reset-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.reset-btn:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(22, 33, 39, 0.3);
}

/* Form validation */
.reset-input:invalid {
    border-color: #dc3545;
}

.reset-input:valid {
    border-color: #28a745;
}

/* Autofill styles */
.reset-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #fafbfc inset !important;
    -webkit-text-fill-color: var(--text-dark) !important;
}

.reset-input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px var(--white) inset !important;
}

/* Success state animation */
.alert-success {
    animation: slideInSuccess 0.5s ease forwards;
}

@keyframes slideInSuccess {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-edit-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.profile-header-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    border: none;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease 0.1s forwards;
}

.profile-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #162127, #373361);
}

.profile-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.profile-content-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 40px;
    border: none;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease 0.3s forwards;
}

.profile-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    border: none;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-left: 4px solid #28a745;
}

.profile-form-section {
    max-width: 900px;
    margin: 0 auto;
}

.modern-profile-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid #162127;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 25px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.profile-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0;
}

.profile-input,
.profile-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background: var(--white);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.profile-input:focus,
.profile-select:focus {
    outline: none;
    border-color: #162127;
    box-shadow: 0 0 0 3px rgba(22, 33, 39, 0.1);
    transform: translateY(-1px);
}

.profile-input::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.profile-select {
    cursor: pointer;
}

.profile-actions {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.profile-btn {
    padding: 18px 40px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.profile-btn.primary {
    background: linear-gradient(135deg, #162127, #373361);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(22, 33, 39, 0.3);
}

.profile-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 33, 39, 0.4);
    background: linear-gradient(135deg, #1a252c, #3f3d6b);
    color: var(--white);
    text-decoration: none;
}

/* Modal Styling */
.modern-modal .modal-header {
    background: linear-gradient(135deg, #162127, #373361);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modern-modal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.modern-modal .modal-body {
    padding: 30px;
}

.modern-modal .form-check-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    cursor: pointer;
}

.modern-modal .form-check-input:checked {
    background-color: #162127;
    border-color: #162127;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-edit-container {
        padding: 20px 15px;
    }
    
    .profile-header-card,
    .profile-content-card {
        padding: 25px 20px;
    }
    
    .profile-title {
        font-size: 24px;
    }
    
    .form-section {
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .profile-input,
    .profile-select {
        padding: 14px 18px;
        font-size: 16px;
    }
    
    .profile-btn {
        width: 100%;
        padding: 16px 25px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .profile-title {
        font-size: 20px;
    }
    
    .profile-header-card,
    .profile-content-card {
        padding: 20px 15px;
    }
    
    .form-section {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 18px;
    }
}

/* Form validation */
.profile-input:invalid,
.profile-select:invalid {
    border-color: #dc3545;
}

.profile-input:valid,
.profile-select:valid {
    border-color: #28a745;
}

/* Loading state */
.profile-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}
.change-password-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.change-password-header-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    border: none;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease 0.1s forwards;
}

.change-password-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #162127, #373361);
}

.change-password-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.change-password-content-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 40px;
    border: none;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease 0.3s forwards;
}

.change-password-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    border: none;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da, #f1b0b7);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.change-password-form-section {
    max-width: 600px;
    margin: 0 auto;
}

.modern-change-password-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.change-password-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.change-password-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0;
}

.change-password-input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background: #fafbfc;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.change-password-input:focus {
    outline: none;
    border-color: #162127;
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(22, 33, 39, 0.1);
    transform: translateY(-2px);
}

.change-password-input::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

/* Şifre Gücü Göstergesi */
.password-strength {
    margin-top: 10px;
}

.strength-bar {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.strength-text {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--secondary-color);
}

/* Şifre Eşleşme Kontrolü */
.password-match {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    margin-top: 8px;
    min-height: 18px;
}

.password-match.match {
    color: #28a745;
}

.password-match.no-match {
    color: #dc3545;
}

/* Şifre Gereksinimleri */
.password-requirements {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #162127;
}

.password-requirements h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 15px 0;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.requirement {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--secondary-color);
    padding-left: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.requirement::before {
    content: '○';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.requirement.valid {
    color: #28a745;
}

.requirement.valid::before {
    content: '●';
    color: #28a745;
}

/* Butonlar */
.change-password-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.change-password-btn {
    flex: 1;
    padding: 18px 30px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.change-password-btn.primary {
    background: linear-gradient(135deg, #162127, #373361);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(22, 33, 39, 0.3);
}

.change-password-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 33, 39, 0.4);
    background: linear-gradient(135deg, #1a252c, #3f3d6b);
    color: var(--white);
    text-decoration: none;
}

.change-password-btn.secondary {
    background: transparent;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

.change-password-btn.secondary:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #495057;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .change-password-container {
        padding: 20px 15px;
    }
    
    .change-password-header-card,
    .change-password-content-card {
        padding: 25px 20px;
    }
    
    .change-password-title {
        font-size: 24px;
    }
    
    .change-password-input {
        padding: 16px 20px;
        font-size: 16px;
    }
    
    .change-password-btn {
        padding: 16px 25px;
        font-size: 16px;
    }
    
    .change-password-actions {
        flex-direction: column;
    }
    
    .requirements-list {
        gap: 6px;
    }
    
    .requirement {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .change-password-title {
        font-size: 20px;
    }
    
    .change-password-header-card,
    .change-password-content-card {
        padding: 20px 15px;
    }
    
    .change-password-input {
        padding: 14px 18px;
    }
    
    .change-password-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .alert {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .password-requirements {
        padding: 15px;
    }
}

/* Form validation */
.change-password-input:invalid {
    border-color: #dc3545;
}

.change-password-input:valid {
    border-color: #28a745;
}

/* Loading state */
.change-password-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.change-password-btn:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(22, 33, 39, 0.3);
}

.my-projects-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.my-projects-header-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    border: none;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease 0.1s forwards;
}

.my-projects-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #162127, #373361);
}

.my-projects-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.my-projects-content-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 40px;
    border: none;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease 0.3s forwards;
}

.modern-table-wrapper {
    overflow-x: auto;
    border-radius: 10px;
    background: var(--white);
}

/* Modern DataTable Styling */
.modern-datatable {
    width: 100% !important;
    border-collapse: collapse;
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.modern-datatable thead {
    background: linear-gradient(135deg, #162127, #373361);
    color: var(--white);
}

.modern-datatable thead th {
    padding: 18px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    border: none;
    color: var(--white);
}

.modern-datatable tbody td {
    padding: 15px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px solid #f1f3f4;
    vertical-align: middle;
}

.modern-datatable tbody tr {
    transition: all 0.2s ease;
}

.modern-datatable tbody tr:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.modern-datatable tfoot {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.modern-datatable tfoot th {
    padding: 15px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--secondary-color);
    border: none;
}

/* Sütun Stilleri */
.id-column {
    width: 80px;
    text-align: center;
    font-weight: 600;
    color: #162127;
}

.name-column {
    font-weight: 500;
    color: var(--text-dark);
}

.actions-column {
    width: 120px;
    text-align: center;
}

/* Detail Button */
.detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #162127, #373361);
    color: var(--white);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.3s ease;
    border: none;
    min-width: 80px;
}

.detail-btn:hover {
    background: linear-gradient(135deg, #1a252c, #3f3d6b);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 33, 39, 0.3);
}

/* DataTable Pagination & Controls Styling */
.dataTables_wrapper {
    font-family: 'Poppins', sans-serif;
}

.dataTables_wrapper .dataTables_length select {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 8px 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.dataTables_wrapper .dataTables_filter input {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 8px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-left: 10px;
}

.dataTables_wrapper .dataTables_filter input:focus {
    outline: none;
    border-color: #162127;
    box-shadow: 0 0 0 3px rgba(22, 33, 39, 0.1);
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: 6px;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 8px 12px;
    margin: 0 2px;
    transition: all 0.2s ease;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: var(--text-dark);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: linear-gradient(135deg, #162127, #373361);
    border-color: #162127;
    color: var(--white);
}

.dataTables_wrapper .dataTables_info {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--secondary-color);
}

.dataTables_wrapper .dataTables_length label,
.dataTables_wrapper .dataTables_filter label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Empty State */
.dataTables_empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--secondary-color);
    font-style: italic;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .my-projects-container {
        padding: 20px 15px;
    }
    
    .my-projects-header-card,
    .my-projects-content-card {
        padding: 25px 20px;
    }
    
    .my-projects-title {
        font-size: 24px;
    }
    
    .modern-datatable thead th,
    .modern-datatable tbody td,
    .modern-datatable tfoot th {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .detail-btn {
        padding: 6px 12px;
        font-size: 11px;
        min-width: 70px;
    }
    
    .id-column {
        width: 60px;
    }
    
    .actions-column {
        width: 100px;
    }
}

@media (max-width: 576px) {
    .my-projects-title {
        font-size: 20px;
    }
    
    .my-projects-header-card,
    .my-projects-content-card {
        padding: 20px 15px;
    }
    
    .modern-datatable thead th,
    .modern-datatable tbody td,
    .modern-datatable tfoot th {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .detail-btn {
        padding: 5px 10px;
        font-size: 10px;
        min-width: 60px;
    }
    
    /* Mobile'da tablo scroll */
    .modern-table-wrapper {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    .modern-datatable {
        min-width: 500px;
    }
}

/* DataTable Loading State */
.dataTables_processing {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
}

/* DataTable No Data State */
.dataTables_empty::before {
    content: '📋';
    display: block;
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.user-management-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.user-management-header-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    border: none;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease 0.1s forwards;
}

.user-management-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #162127, #373361);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.user-management-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.add-user-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #162127, #373361);
    color: var(--white);
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 33, 39, 0.3);
}

.add-user-btn:hover {
    background: linear-gradient(135deg, #1a252c, #3f3d6b);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 33, 39, 0.4);
}

.user-management-content-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 40px;
    border: none;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease 0.3s forwards;
}

.users-section {
    margin-bottom: 0;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f3f4;
}

.modern-table-wrapper {
    overflow-x: auto;
    border-radius: 10px;
    background: var(--white);
}

/* Modern DataTable Styling */
.modern-datatable {
    width: 100% !important;
    border-collapse: collapse;
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.modern-datatable thead {
    background: linear-gradient(135deg, #162127, #373361);
    color: var(--white);
}

.modern-datatable thead th {
    padding: 18px 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-align: left;
    border: none;
    color: var(--white);
}

.modern-datatable tbody td {
    padding: 15px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px solid #f1f3f4;
    vertical-align: middle;
}

.modern-datatable tbody tr {
    transition: all 0.2s ease;
}

.modern-datatable tbody tr:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.modern-datatable tfoot {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.modern-datatable tfoot th {
    padding: 12px 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: var(--secondary-color);
    border: none;
}

/* Sütun Stilleri */
.id-col {
    width: 60px;
    text-align: center;
    font-weight: 600;
    color: #162127;
}

.name-col, .surname-col {
    width: 120px;
    font-weight: 500;
}

.email-col {
    width: 200px;
}

.center-col, .hospital-col {
    width: 150px;
    font-size: 13px;
}

.actions-col {
    width: 100px;
    text-align: center;
}

/* Email Link */
.email-link {
    color: #162127;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.email-link:hover {
    color: #373361;
    text-decoration: underline;
}

/* Detail Button */
.detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #162127, #373361);
    color: var(--white);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.3s ease;
    border: none;
    min-width: 70px;
}

.detail-btn:hover {
    background: linear-gradient(135deg, #1a252c, #3f3d6b);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 33, 39, 0.3);
}

/* DataTable Pagination & Controls Styling */
.dataTables_wrapper {
    font-family: 'Poppins', sans-serif;
}

.dataTables_wrapper .dataTables_length select {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 8px 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.dataTables_wrapper .dataTables_filter input {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 8px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-left: 10px;
}

.dataTables_wrapper .dataTables_filter input:focus {
    outline: none;
    border-color: #162127;
    box-shadow: 0 0 0 3px rgba(22, 33, 39, 0.1);
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: 6px;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 8px 12px;
    margin: 0 2px;
    transition: all 0.2s ease;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: var(--text-dark);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: linear-gradient(135deg, #162127, #373361);
    border-color: #162127;
    color: var(--white);
}

.dataTables_wrapper .dataTables_info {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--secondary-color);
}

.dataTables_wrapper .dataTables_length label,
.dataTables_wrapper .dataTables_filter label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .user-management-container {
        padding: 20px 15px;
    }
    
    .user-management-header-card,
    .user-management-content-card {
        padding: 25px 20px;
    }
    
    .user-management-title {
        font-size: 24px;
    }
    
    .header-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .add-user-btn {
        text-align: center;
        padding: 12px 20px;
    }
    
    .modern-datatable thead th,
    .modern-datatable tbody td,
    .modern-datatable tfoot th {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .detail-btn {
        padding: 5px 10px;
        font-size: 11px;
        min-width: 60px;
    }
    
    .section-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .user-management-title {
        font-size: 20px;
    }
    
    .user-management-header-card,
    .user-management-content-card {
        padding: 20px 15px;
    }
    
    .modern-datatable thead th,
    .modern-datatable tbody td,
    .modern-datatable tfoot th {
        padding: 8px 6px;
        font-size: 11px;
    }
    
    .detail-btn {
        padding: 4px 8px;
        font-size: 10px;
        min-width: 50px;
    }
    
    /* Mobile'da tablo scroll */
    .modern-table-wrapper {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    .modern-datatable {
        min-width: 700px;
    }
    
    .section-title {
        font-size: 18px;
    }
}

/* DataTable Empty State */
.dataTables_empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--secondary-color);
    font-style: italic;
}

.dataTables_empty::before {
    content: '👥';
    display: block;
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}
.user-add-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.user-add-header-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    border: none;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease 0.1s forwards;
}

.user-add-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #162127, #373361);
}

.user-add-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.user-add-content-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 40px;
    border: none;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease 0.3s forwards;
}

.user-add-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    border: none;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-left: 4px solid #28a745;
}

.user-add-form-section {
    max-width: 900px;
    margin: 0 auto;
}

.modern-user-add-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid #162127;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 25px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.user-add-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.user-add-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0;
}

.user-add-input,
.user-add-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background: var(--white);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.user-add-input:focus,
.user-add-select:focus {
    outline: none;
    border-color: #162127;
    box-shadow: 0 0 0 3px rgba(22, 33, 39, 0.1);
    transform: translateY(-1px);
}

.user-add-input::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.user-add-select {
    cursor: pointer;
}

.user-add-actions {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.user-add-btn {
    padding: 18px 40px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.user-add-btn.primary {
    background: linear-gradient(135deg, #162127, #373361);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(22, 33, 39, 0.3);
}

.user-add-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 33, 39, 0.4);
    background: linear-gradient(135deg, #1a252c, #3f3d6b);
    color: var(--white);
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .user-add-container {
        padding: 20px 15px;
    }
    
    .user-add-header-card,
    .user-add-content-card {
        padding: 25px 20px;
    }
    
    .user-add-title {
        font-size: 24px;
    }
    
    .form-section {
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .user-add-input,
    .user-add-select {
        padding: 14px 18px;
        font-size: 16px;
    }
    
    .user-add-btn {
        width: 100%;
        padding: 16px 25px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .user-add-title {
        font-size: 20px;
    }
    
    .user-add-header-card,
    .user-add-content-card {
        padding: 20px 15px;
    }
    
    .form-section {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 18px;
    }
}

/* Form validation */
.user-add-input:invalid,
.user-add-select:invalid {
    border-color: #dc3545;
}

.user-add-input:valid,
.user-add-select:valid {
    border-color: #28a745;
}

/* Loading state */
.user-add-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Date dropdown styling */
.date {
    width: 33%;
    float: left;
    margin-right: 0.1%;
}

.hidden {
    display: none;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.contact-header-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    border: none;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease 0.1s forwards;
}

.contact-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #162127, #373361);
}

.contact-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.contact-content-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 40px;
    border: none;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease 0.3s forwards;
}

.contact-info {
    margin-bottom: 40px;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border-left: 4px solid #162127;
}

.info-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.info-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 10px 0;
}

.info-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.6;
}

.info-content a {
    color: #162127;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.info-content a:hover {
    color: #373361;
    text-decoration: underline;
}

.contact-form-section {
    border-top: 1px solid #e9ecef;
    padding-top: 30px;
}

.form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.modern-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.field-icon {
    font-size: 16px;
}

.modern-input,
.modern-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background: #fafbfc;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.modern-input:focus,
.modern-textarea:focus {
    outline: none;
    border-color: #162127;
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(22, 33, 39, 0.1);
    transform: translateY(-1px);
}

.modern-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    text-align: center;
    margin: 30px 0 20px 0;
}

.modern-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #162127, #373361);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 33, 39, 0.3);
}

.modern-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 33, 39, 0.4);
    background: linear-gradient(135deg, #1a252c, #3f3d6b);
}

.btn-icon {
    font-size: 18px;
}

.security-info {
    text-align: center;
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.security-icon {
    font-size: 14px;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        padding: 20px 15px;
    }
    
    .contact-header-card,
    .contact-content-card {
        padding: 25px 20px;
    }
    
    .contact-title {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .modern-input,
    .modern-textarea {
        padding: 12px 15px;
    }
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 20px;
    }
    
    .contact-header-card,
    .contact-content-card {
        padding: 20px 15px;
    }
    
    .info-box {
        padding: 20px 15px;
    }
    
    .modern-submit-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }
    
    .form-title {
        font-size: 18px;
    }
}

/* Form validation styles */
.modern-input:invalid,
.modern-textarea:invalid {
    border-color: #dc3545;
}

.modern-input:valid,
.modern-textarea:valid {
    border-color: #28a745;
}

/* Loading state */
.modern-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.modern-submit-btn:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(22, 33, 39, 0.3);
}



.modern-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #162127, #373361);
    color: var(--white);
    border: none;
    padding: 9px 30px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-left: 10px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 33, 39, 0.3);
}

.modern-header-btn-2{
    background: linear-gradient(135deg, #003450, #1802ff);
}

.modern-header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 33, 39, 0.4);
    background: linear-gradient(135deg, #1a252c, #3f3d6b);
    color:#fff;
}

.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 10px 25px; /* Padding'i biraz azalttım */
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent; /* Geçişlerde zıplamayı önlemek için */
}

/* Birincil Buton (Filtrele) */
.btn-custom-primary {
    background: linear-gradient(135deg, #162127, #373361);
    color: #ffffff; /* var(--white) yerine direkt renk kodu */
    box-shadow: 0 4px 15px rgba(22, 33, 39, 0.3);
}
.btn-custom-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 33, 39, 0.4);
}

/* İkincil Buton (Temizle) */
.btn-custom-secondary {
    background-color: transparent;
    border-color: #373361;
    color: #373361;
}
.btn-custom-secondary:hover {
    background: linear-gradient(135deg, #162127, #373361);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
}

.delete-btn {
      display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #dc3545, #dc3545);
    color: var(--white);
    border: none;
    padding: 9px 22px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-left: 10px;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 33, 39, 0.3);
}

.delete-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 33, 39, 0.4);
    background: linear-gradient(135deg, #c82333, #c82333);
    color:#fff;
}


.actions-col a, .actions-col form {
    vertical-align: middle;
}


.modern-edit-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #162127, #373361);
    color: var(--white);
    border: none;
    padding: 9px 22px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-left: 10px;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 33, 39, 0.3);
}

.modern-edit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 33, 39, 0.4);
    background: linear-gradient(135deg, #1a252c, #3f3d6b);
    color:#fff;
}

.modern-passive-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffc107, #ffc107);
    color: var(--white);
    border: none;
    padding: 9px 22px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-left: 10px;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 33, 39, 0.3);
}

.modern-passive-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 33, 39, 0.4);
    background: linear-gradient(135deg, #ffc107, #ffc107);
    color:#fff;
}