/* Kurumsal kimlik renkleri - PANTONE ve Web renkleri (Soft tonlar) */
:root {
    --primary-color: #3b82f6; /* Soft mavi */
    --primary-dark: #2563eb; /* Orta mavi */
    --primary-darker: #1d4ed8; /* Koyu mavi */
    --secondary-color: #7ac943; /* Web yeşil */
    --accent-color: #ff931e; /* Web turuncu */
    --success-color: #7ac943; /* Web yeşil */
    --warning-color: #ff931e; /* Web turuncu */
    --danger-color: #ff1d25; /* Web kırmızı */
    --light-color: #f8fafc;
    --dark-color: #1e293b;
    --pantone-654: #2e3192; /* PANTONE 654 C */
    --pantone-319: #3fa9f5; /* PANTONE 319 C benzeri */
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--primary-color);
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.login-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: var(--primary-color);
    color: white !important;
}

.register-btn {
    background: var(--primary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Form Styles */
.form-container {
    max-width: 520px;
    margin: 120px auto 60px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark), var(--primary-darker));
}

.form-title {
    text-align: center;
    margin-bottom: 35px;
    color: #1a1a1a;
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.form-title i {
    color: var(--primary-color);
    font-size: 2rem;
    animation: rotate 3s linear infinite;
}

.form-description {
    text-align: center;
    margin-bottom: 35px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-description p {
    margin-bottom: 10px;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-description p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: #1a1a1a;
}

.form-description i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 18px 25px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

/* Input Icon Styles - Left Side */
.input-icon-left {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    pointer-events: none;
    z-index: 2;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.input-group:hover .input-icon-left {
    color: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.input-with-icon {
    padding-left: 50px !important;
}

.input-group {
    position: relative;
}

.input-group:hover input {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Alert Styles */
.alert {
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
    animation: slideDown 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 4px solid;
    position: relative;
    overflow: hidden;
}

.alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.alert:hover::before {
    transform: translateX(100%);
}

.alert i {
    margin-right: 15px;
    font-size: 1.3em;
    animation: pulse 2s infinite;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-left-color: #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.alert-success i {
    color: #28a745;
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border-left-color: #dc3545;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
}

.alert-error i {
    color: #dc3545;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    color: #856404;
    border-left-color: #ffc107;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.alert-warning i {
    color: #ffc107;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Form Footer Styles */
.form-footer {
    margin-top: 35px;
    text-align: center;
}

.form-footer p {
    margin-bottom: 15px;
}

.form-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 8px;
    padding-left: 5px;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-text::before {
    content: '💡';
    font-size: 0.8rem;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-left: 10px;
}

.btn-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.btn-link i {
    margin-right: 5px;
}

/* Login Link Styles */
.login-link-section {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    border: 1px solid #cbd5e1;
}

.login-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-left: 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    background-color: transparent;
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.15);
    position: relative;
    overflow: hidden;
}

.login-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.login-link:hover::before {
    left: 100%;
}

.login-link:hover {
    background-color: #2563eb;
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    border-color: #1d4ed8;
}

.login-link i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.login-link:hover i {
    transform: translateX(3px);
}

.security-info {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.security-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.security-info i {
    color: #28a745;
    margin-right: 12px;
    font-size: 1.2em;
    animation: pulse 3s infinite;
}

.security-info small {
    color: #6c757d;
    font-size: 0.95em;
    font-weight: 500;
    line-height: 1.4;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .form-container {
        margin: 100px 20px 60px;
        padding: 40px 25px;
    }

    .form-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }

    .form-title i {
        font-size: 1.5rem;
    }

    .form-description {
        padding: 15px;
        margin-bottom: 25px;
    }

    .form-description p {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .login-link {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .security-info {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .security-info i {
        margin-right: 0;
        margin-bottom: 5px;
    }
}

/* Duyuru Sayfası Stilleri */
.announcements-header {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.announcements-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.announcements-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.announcements-container {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: 70vh;
}

.announcements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.announcement-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 5px solid #ddd;
}

.announcement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.announcement-card.priority-1 {
    border-left-color: #10b981;
}

.announcement-card.priority-2 {
    border-left-color: #3b82f6;
}

.announcement-card.priority-3 {
    border-left-color: #ef4444;
}

.announcement-header {
    padding: 25px;
    border-bottom: 1px solid #eee;
}

.announcement-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.announcement-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.priority-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.priority-badge.high {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.priority-badge.medium {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.announcement-header h2 {
    margin: 0;
    color: #333;
    font-size: 1.4rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3.6rem;
}

.announcement-content {
    padding: 25px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.8rem;
}

.announcement-footer {
    padding: 25px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.expiry-date {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #999;
    font-size: 0.9rem;
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

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

.page-link {
    padding: 10px 15px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.page-link:hover {
    background: #3b82f6;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.page-link.current {
    background: #3b82f6;
    color: white;
    cursor: default;
}

.no-announcements {
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

.no-announcements-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    opacity: 0.5;
}

.no-announcements h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.5rem;
}

.no-announcements p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Duyuru Responsive */
@media (max-width: 768px) {
    .announcements-header h1 {
        font-size: 2rem;
    }
    
    .announcements-grid {
        grid-template-columns: 1fr;
    }
    
    .announcement-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .announcement-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }

    .announcement-header h2 {
        font-size: 1.2rem;
        max-height: 3.1rem;
    }

    .announcement-content {
        max-height: 4.2rem;
    }
}

/* Duyuru Detay Sayfası Stilleri */
.announcement-detail-header {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: white;
    padding: 40px 0 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.6;
}

.announcement-detail-container {
    padding: 60px 0;
    background: #f8f9fa;
}

.announcement-detail-container .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.announcement-detail {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.announcement-detail .announcement-header {
    padding: 40px;
    border-bottom: 1px solid #eee;
}

.announcement-detail .announcement-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.announcement-detail .announcement-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.announcement-detail .priority-badge {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.announcement-detail .priority-badge.high {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.announcement-detail .priority-badge.medium {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.announcement-detail .announcement-header h1 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 2.5rem;
    line-height: 1.2;
}

.expiry-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f59e0b;
    font-size: 0.9rem;
    background: rgba(245, 158, 11, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
}

.announcement-detail .announcement-content {
    padding: 40px;
    line-height: 1.8;
    color: #444;
}

.announcement-detail .announcement-content h2,
.announcement-detail .announcement-content h3,
.announcement-detail .announcement-content h4 {
    margin: 30px 0 15px 0;
    color: #333;
}

.announcement-detail .announcement-content p {
    margin-bottom: 20px;
}

.announcement-detail .announcement-content ul,
.announcement-detail .announcement-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.announcement-detail .announcement-content li {
    margin-bottom: 8px;
}

.announcement-detail .announcement-footer {
    padding: 30px 40px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.announcement-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.announcement-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-card h3 {
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.sidebar-card h3 i {
    color: #3b82f6;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item .label {
    font-weight: 500;
    color: #666;
}

.info-item .value {
    font-weight: 600;
    color: #333;
}

.info-item .value.priority-1 {
    color: #10b981;
}

.info-item .value.priority-2 {
    color: #3b82f6;
}

.info-item .value.priority-3 {
    color: #ef4444;
}

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

.contact-info i {
    margin-right: 8px;
    color: #3b82f6;
    width: 16px;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
}

.btn-full {
    width: 100%;
}

/* Duyuru Detay Responsive */
@media (max-width: 768px) {
    .announcement-detail-container .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .announcement-detail .announcement-header h1 {
        font-size: 2rem;
    }
    
    .announcement-detail .announcement-header,
    .announcement-detail .announcement-content,
    .announcement-detail .announcement-footer {
        padding: 30px 20px;
    }
    
    .announcement-detail .announcement-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .announcement-actions {
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
    }
}

@media print {
    .announcement-detail-header,
    .announcement-sidebar,
    .announcement-detail .announcement-footer {
        display: none !important;
    }
    
    .announcement-detail-container .container {
        grid-template-columns: 1fr;
        max-width: none;
        padding: 0;
    }
    
    .announcement-detail {
        box-shadow: none;
        border: none;
    }
}

/* Program Sayfası Stilleri */
.program-header {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.program-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.program-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.program-container {
    padding: 60px 0;
    background: #f8f9fa;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.program-day-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.program-day-card:hover {
    transform: translateY(-5px);
}

.day-header {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.session-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.sessions-list {
    padding: 25px;
}

.session-item {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.session-item:last-child {
    border-bottom: none;
}

.session-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #3b82f6;
    min-width: 120px;
}

.session-info {
    flex: 1;
}

.session-info h4 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 1.1rem;
}

.session-details {
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 0.9rem;
}

.capacity {
    display: flex;
    align-items: center;
    gap: 5px;
}

.program-info {
    margin: 60px 0;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-card h3 {
    margin-bottom: 20px;
    color: #333;
}

.info-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.info-card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.info-card li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.info-card li:last-child {
    border-bottom: none;
}

.working-hours {
    text-align: left;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.hour-item:last-child {
    border-bottom: none;
}

.days {
    font-weight: 500;
}

.hours {
    color: #3b82f6;
    font-weight: 600;
}

.contact-info {
    text-align: left;
}

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

.program-cta {
    background: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.program-cta h2 {
    margin-bottom: 15px;
    color: #333;
    font-size: 2rem;
}

.program-cta p {
    margin-bottom: 30px;
    color: #666;
    font-size: 1.1rem;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.no-program {
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

.no-program-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    opacity: 0.5;
}

.no-program h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.5rem;
}

.no-program p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Program Responsive */
@media (max-width: 768px) {
    .program-header h1 {
        font-size: 2rem;
    }
    
    .program-grid {
        grid-template-columns: 1fr;
    }
    
    .day-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .session-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .session-time {
        min-width: auto;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .program-cta {
        padding: 30px 20px;
    }
    
    .program-cta h2 {
        font-size: 1.5rem;
    }
}

/* Login Sayfası Stilleri */
.login-page {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.login-form-container {
    background: white;
    max-width: 450px;
    margin: 120px auto 50px auto;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.login-form-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-form-title i {
    color: var(--primary-color);
}

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

.login-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.login-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.login-input-group i {
    position: absolute;
    left: 15px;
    color: #999;
    z-index: 1;
}

.login-input-group input {
    width: 100%;
    padding: 15px 50px 15px 45px; /* Sağda göz ikonu için daha fazla padding */
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Padding'i width'e dahil et */
}

.login-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.login-password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%); /* Dikey ortalama */
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 8px; /* Daha fazla padding */
    z-index: 2; /* Input'un üstünde olsun */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px; /* Sabit genişlik */
    height: 32px; /* Sabit yükseklik */
    border-radius: 4px; /* Hafif yuvarlak köşeler */
    transition: all 0.3s ease;
}

.login-password-toggle:hover {
    color: var(--primary-color);
}

.login-checkbox-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.login-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #666;
    font-size: 0.9rem;
}

.login-checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.login-forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.login-forgot-password:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.login-btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.login-form-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.login-form-footer p {
    color: #666;
    margin: 0;
}

.login-form-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.login-form-footer a:hover {
    text-decoration: underline;
}

.login-quick-access {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.login-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: white;
}

.login-quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.login-quick-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.login-quick-card:hover {
    transform: translateY(-10px);
}

.login-quick-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.login-quick-icon i {
    font-size: 2rem;
    color: white;
}

.login-quick-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.login-quick-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.login-btn-secondary {
    background: #6c757d;
    color: white;
}

.login-btn-secondary:hover {
    background: #545b62;
    color: white;
    text-decoration: none;
}

.login-alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.login-alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.login-text-danger {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

.login-validation-summary {
    margin-bottom: 20px;
}

.login-validation-summary ul {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 10px;
    padding: 15px 20px;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-validation-summary ul:before {
    content: "\f071";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #721c24;
}

.login-validation-summary li {
    margin: 0;
    padding: 0;
}

.login-captcha-container {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.login-captcha-container:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.login-captcha-image {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}

.login-captcha-container input {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-captcha-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: #f8fafc;
}

.login-captcha-image img {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
}

.login-btn-refresh {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-btn-refresh:hover {
    background: var(--primary-dark);
}

.login-form-help {
    display: block;
    margin-top: 8px;
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
    text-align: center;
    background: rgba(59, 130, 246, 0.05);
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .login-form-container {
        margin: 20px;
        padding: 40px 30px;
    }

    .login-form-title {
        font-size: 1.5rem;
    }

    .login-quick-access-grid {
        grid-template-columns: 1fr;
    }

    .login-section-title {
        font-size: 2rem;
    }

    .login-checkbox-group {
        flex-direction: column;
        align-items: flex-start;
    }
}
.contact-header {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-info {
    padding: 80px 0;
    background: #f8f9fa;
    margin-top: 40px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-card p {
    color: #666;
    line-height: 1.8;
}

.contact-content {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-card h2 i {
    color: #3b82f6;
}

.form-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.btn-submit {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    transform: none;
    cursor: not-allowed;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.info-card h3 {
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: #3b82f6;
}

.map-container {
    margin-bottom: 15px;
}

.map-placeholder {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    color: #666;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #3b82f6;
}

.map-placeholder p {
    margin-bottom: 20px;
}

.map-loaded {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
}

.map-loaded i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.map-loaded small {
    opacity: 0.8;
}

.map-info {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question i {
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    background: #3b82f6;
    color: white;
}

.faq-item.active .faq-question i {
    color: white;
}

.info-card.emergency {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.info-card.emergency h3 {
    color: white;
}

.info-card.emergency h3 i {
    color: white;
}

.emergency-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.emergency-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 0.9rem;
}

.service-item i {
    font-size: 1.5rem;
}

.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.member-avatar i {
    font-size: 2rem;
    color: white;
}

.team-member h3 {
    margin-bottom: 10px;
    color: #333;
}

.member-title {
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-contact {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.alert-close {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
}

.alert-close:hover {
    opacity: 1;
}

.captcha-container {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.captcha-image {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}

.captcha-image img {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
}

.btn-refresh {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-refresh:hover {
    background: #2563eb;
}

.form-help {
    display: block;
    margin-top: 5px;
    font-size: 0.875rem;
    color: #666;
}

.loading-info {
    text-align: center;
    padding: 40px;
    color: #666;
}

.loading-info i {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 15px;
}

.loading-info p {
    font-size: 1.1rem;
    margin: 0;
}

/* Contact Responsive */
@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        padding: 30px 20px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-services {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        padding: 15px;
    }
}

/* Register Sayfası Stilleri */
.register-page {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.register-form-container {
    background: white;
    max-width: 550px;
    margin: 120px auto 50px auto;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.register-form-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.register-form-title i {
    color: var(--primary-color);
}

.register-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.register-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.register-form-group input,
.register-form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.register-form-group input:focus,
.register-form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.register-form-help {
    font-size: 0.8rem;
    color: #999;
    margin-top: 5px;
    display: block;
}

.register-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.register-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.register-checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 2px;
}

.register-checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.register-checkbox-label a:hover {
    text-decoration: underline;
}

.register-btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.register-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.register-btn-submit:disabled {
    opacity: 0.7;
    transform: none;
    cursor: not-allowed;
}

.register-form-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    margin-top: 30px;
}

.register-form-footer p {
    color: #666;
    margin: 0;
}

.register-form-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.register-form-footer a:hover {
    text-decoration: underline;
}

.register-text-danger {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

.register-file-upload-container {
    position: relative;
    margin-bottom: 15px;
}

.register-file-input {
    display: none;
}

.register-file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    border: 2px dashed var(--primary-color);
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.register-file-upload-label:hover {
    border-color: var(--primary-dark);
    background: rgba(59, 130, 246, 0.1);
}

.register-file-upload-label i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.register-file-upload-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.register-file-upload-help {
    color: #666;
    font-size: 0.9rem;
}

.register-file-list {
    margin-top: 15px;
}

.register-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.register-file-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.register-file-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.register-file-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: bold;
}

.register-file-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.register-file-name {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.register-file-size {
    font-size: 0.8rem;
    color: #666;
}

.register-file-category {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 2px;
}

.register-file-remove {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
}

.register-file-remove:hover {
    background: #c82333;
    transform: scale(1.05);
}

.register-captcha-container {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.register-captcha-container:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.register-captcha-image {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}

.register-captcha-image img {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
}

.register-btn-refresh {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.register-btn-refresh:hover {
    background: var(--primary-dark);
}

.register-captcha-container input {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.register-captcha-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: #f8fafc;
}

/* Register Modal Stilleri */
.register-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.register-modal-content {
    background: white;
    max-width: 600px;
    max-height: 80vh;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.register-modal-header {
    padding: 20px 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.register-modal-header h2 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}

.register-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-modal-close:hover {
    color: #333;
}

.register-modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.register-modal-body h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.register-modal-body p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #666;
}

.register-modal-body ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.register-modal-body li {
    margin-bottom: 8px;
    color: #666;
}

.register-modal-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    text-align: right;
}

.register-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.register-btn-secondary {
    background: #6c757d;
    color: white;
}

.register-btn-secondary:hover {
    background: #545b62;
}

@media (max-width: 768px) {
    .register-form-container {
        margin: 20px;
        padding: 40px 30px;
    }

    .register-form-title {
        font-size: 1.5rem;
    }

    .register-form-row {
        grid-template-columns: 1fr;
    }

    .register-modal-content {
        margin: 20px;
        max-width: calc(100% - 40px);
    }

    .register-modal-body {
        padding: 20px;
    }

    .register-modal-header,
    .register-modal-footer {
        padding: 15px 20px;
    }
}

/* Randevu Sayfası Stilleri */
.randevu-booking-header {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.randevu-booking-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.randevu-booking-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.randevu-booking-container {
    padding: 60px 0;
    background: #f8f9fa;
}

.randevu-booking-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.randevu-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.randevu-form-card h2 {
    margin-bottom: 30px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.randevu-form-card h2 i {
    color: var(--primary-color);
}

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

.randevu-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.randevu-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.randevu-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.randevu-btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.randevu-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.randevu-btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.randevu-btn-submit .btn-loading {
    display: none;
    align-items: center;
    gap: 8px;
}

.randevu-btn-submit:disabled .btn-loading {
    display: inline-flex;
}

.randevu-btn-submit:disabled .btn-text {
    display: none;
}

.randevu-info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.randevu-info-card h3 {
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.randevu-info-card h3 i {
    color: var(--primary-color);
}

.randevu-today-sessions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.randevu-session-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.randevu-session-item.women {
    background: #fce4ec;
    color: #c2185b;
}

.randevu-session-item.men {
    background: #e3f2fd;
    color: #1976d2;
}

.randevu-session-item.general {
    background: #e8f5e8;
    color: #388e3c;
}

.randevu-session-item.course {
    background: #fff3e0;
    color: #f57c00;
}

.randevu-session-item.past {
    opacity: 0.5;
    text-decoration: line-through;
}

.randevu-session-item.full {
    opacity: 0.7;
}

.randevu-session-time {
    font-weight: 600;
}

.randevu-session-status {
    font-size: 0.8rem;
    font-weight: 500;
}

.randevu-capacity-status {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.randevu-capacity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.randevu-capacity-label {
    min-width: 100px;
    font-weight: 500;
}

.randevu-capacity-bar {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.randevu-capacity-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.randevu-capacity-fill.low {
    background: #4caf50;
}

.randevu-capacity-fill.medium {
    background: #ff9800;
}

.randevu-capacity-fill.high {
    background: #f44336;
}

.randevu-capacity-text {
    min-width: 60px;
    text-align: right;
    font-weight: 500;
}

.randevu-alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.randevu-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.randevu-alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.randevu-text-danger {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

.randevu-validation-summary {
    margin-bottom: 20px;
}

.randevu-validation-summary ul {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 10px;
    padding: 15px 20px;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.randevu-validation-summary ul:before {
    content: "\f071";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #721c24;
}

.randevu-validation-summary li {
    margin: 0;
    padding: 0;
}

.randevu-countdown-timer {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
    margin-top: 10px;
}

.randevu-countdown-buttons {
    margin-top: 15px;
}

.randevu-countdown-buttons .btn {
    margin: 0 10px;
}

.randevu-session-item.incompatible {
    background: #fff3e0;
    color: #f57c00;
    opacity: 0.8;
}

.randevu-session-item .randevu-session-time {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.randevu-session-item .randevu-session-info {
    flex: 1;
    margin: 0 10px;
    text-align: left;
}

.randevu-session-item .randevu-session-info h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.randevu-session-item .randevu-session-capacity {
    font-size: 0.8rem;
    color: inherit;
    opacity: 0.8;
    margin: 2px 0 0 0;
}

.randevu-session-item .randevu-session-status {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: right;
}

@media (max-width: 768px) {
    .randevu-booking-header {
        padding: 80px 0 40px;
    }
    
    .randevu-booking-header h1 {
        font-size: 2rem;
    }
    
    .randevu-booking-container {
        padding: 40px 0;
    }
    
    .randevu-booking-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .randevu-form-card {
        padding: 30px 20px;
    }
    
    .randevu-info-card {
        padding: 25px 20px;
    }
}

/* Randevu Sayfası Ek Stilleri */
.randevu-booking-form-section {
    grid-column: 1;
}

.randevu-booking-info-section {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.randevu-session-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.randevu-rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.randevu-rules-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
    font-size: 0.9rem;
}

.randevu-rules-list li:last-child {
    border-bottom: none;
}

.randevu-rules-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 8px;
}

.randevu-emergency {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.randevu-emergency h3 {
    color: white;
}

.randevu-emergency h3 i {
    color: white;
}

.randevu-emergency-contact {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    margin: 10px 0;
}

.randevu-emergency-contact strong {
    font-size: 1.2rem;
    color: white;
}

.randevu-emergency-note {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.no-sessions {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
    margin: 0;
}

/* Randevu Seans Durumu Renkleri */
.randevu-session-status-available {
    color: #28a745 !important;
    font-weight: 600;
}

.randevu-session-status-full {
    color: #dc3545 !important;
    font-weight: 600;
}

.randevu-session-status-past {
    color: #6c757d !important;
    font-weight: 600;
}

.randevu-session-status-incompatible {
    color: #ffc107 !important;
    font-weight: 600;
}

/* Randevu Kapasite Durumu Renkleri */
.randevu-capacity-item-available {
    color: #28a745;
    font-weight: 600;
}

.randevu-capacity-item-medium {
    color: #ffc107;
    font-weight: 600;
}

.randevu-capacity-item-full {
    color: #dc3545;
    font-weight: 600;
}

.randevu-capacity-item-past {
    color: #6c757d;
    font-weight: 600;
}

/* Randevu Seans Item Renkleri */
.randevu-session-item-available {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.randevu-session-item-full {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.randevu-session-item-past {
    background: #e2e3e5;
    color: #383d41;
    border-left: 4px solid #6c757d;
    opacity: 0.7;
}

.randevu-session-item-incompatible {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

/* Randevu Seans Kartları - Minimal Tasarım */
.randevu-session-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.randevu-session-item:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.randevu-session-item-available {
    background: #f8f9fa;
    border-left: 3px solid #28a745;
}

.randevu-session-item-full {
    background: #f8f9fa;
    border-left: 3px solid #dc3545;
}

.randevu-session-item-past {
    background: #f8f9fa;
    border-left: 3px solid #6c757d;
    opacity: 0.7;
}

.randevu-session-item-incompatible {
    background: #f8f9fa;
    border-left: 3px solid #ffc107;
}

.randevu-session-item.selected {
    background: #e3f2fd !important;
    border-left: 3px solid #2196f3 !important;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
    transform: scale(1.02);
}

/* Seans Zamanı */
.randevu-session-time {
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 100px;
    color: #495057;
}

.randevu-session-time i {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Seans Bilgileri */
.randevu-session-info {
    flex: 1;
    margin: 0 12px;
    text-align: left;
}

.randevu-session-info h4 {
    margin: 0 0 3px 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #212529;
}

.randevu-session-capacity {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 400;
}

/* Seans Durumu */
.randevu-session-status {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    padding: 4px 12px;
    border-radius: 12px;
    min-width: 60px;
}

.randevu-session-status-available {
    background: #d4edda;
    color: #155724;
}

.randevu-session-status-full {
    background: #f8d7da;
    color: #721c24;
}

.randevu-session-status-past {
    background: #e2e3e5;
    color: #383d41;
}

.randevu-session-status-incompatible {
    background: #fff3cd;
    color: #856404;
}

/* Kapasite Durumu - Basit Tasarım */
.randevu-capacity-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    margin-bottom: 6px;
    border-radius: 6px;
    font-size: 0.85rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.randevu-capacity-item-available {
    border-left: 3px solid #28a745;
}

.randevu-capacity-item-medium {
    border-left: 3px solid #ffc107;
}

.randevu-capacity-item-full {
    border-left: 3px solid #dc3545;
}

.randevu-capacity-item-past {
    border-left: 3px solid #6c757d;
    opacity: 0.7;
}

.randevu-capacity-label {
    font-weight: 500;
    color: #495057;
}

.randevu-capacity-text {
    font-weight: 600;
    color: #212529;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .randevu-session-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .randevu-session-time {
        min-width: auto;
        justify-content: center;
    }
    
    .randevu-session-info {
        margin: 0;
    }
    
    .randevu-capacity-item {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

/* MyAppointments Sayfası Stilleri */
.myappointments-header {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.myappointments-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.myappointments-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.myappointments-container {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: 70vh;
}

.myappointments-filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.myappointments-filter-tab {
    padding: 12px 20px;
    border: none;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #495057;
}

.myappointments-filter-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.myappointments-filter-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.myappointments-quick-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.myappointments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.myappointments-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.myappointments-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.myappointments-card-header {
    padding: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    gap: 20px;
    align-items: center;
}

.myappointments-date {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    min-width: 80px;
    backdrop-filter: blur(10px);
}

.myappointments-date-day {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.myappointments-date-month {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
}

.myappointments-date-year {
    font-size: 0.8rem;
    opacity: 0.8;
}

.myappointments-info {
    flex: 1;
}

.myappointments-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.myappointments-time, .myappointments-day {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.myappointments-status {
    align-self: flex-start;
}

.myappointments-status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.myappointments-status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.myappointments-status-badge:hover::before {
    left: 100%;
}

/* Yaklaşan - Mavi */
.myappointments-status-badge.upcoming {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
}

/* Katıldı - Yeşil */
.myappointments-status-badge.completed {
    background: linear-gradient(135deg, #34d399, #10b981);
    color: white;
}

/* Katılmadı - Kırmızı */
.myappointments-status-badge[class*="katılmadı"],
.myappointments-status-badge[class*="katilmadi"] {
    background: linear-gradient(135deg, #f87171, #ef4444);
    color: white;
}

/* Beklemede - Turuncu */
.myappointments-status-badge[class*="beklemede"],
.myappointments-status-badge[class*="pending"] {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}

/* İptal Edilen - Gri */
.myappointments-status-badge.cancelled {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    color: white;
}

.myappointments-body {
    padding: 25px;
}

.myappointments-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.myappointments-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
}

.myappointments-detail-item i {
    width: 16px;
    color: var(--primary-color);
}

.myappointments-actions {
    padding: 0 25px 25px;
    display: flex;
    gap: 10px;
}

.myappointments-btn-action {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.myappointments-btn-action.cancel {
    background: #ffebee;
    color: #c62828;
}

.myappointments-btn-action.cancel:hover {
    background: #f44336;
    color: white;
}

.myappointments-no-appointments {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

.myappointments-no-appointments-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    opacity: 0.5;
    color: var(--primary-color);
}

.myappointments-no-appointments h3 {
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.myappointments-no-appointments p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* MyAppointments Modal Styles */
.myappointments-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.myappointments-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.myappointments-modal-header {
    padding: 25px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 15px 15px 0 0;
}

.myappointments-modal-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.myappointments-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.myappointments-modal-close:hover {
    opacity: 1;
}

.myappointments-modal-body {
    padding: 25px;
}

.myappointments-modal-actions {
    padding: 25px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.myappointments-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.myappointments-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.myappointments-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.myappointments-btn-secondary {
    background: #6c757d;
    color: white;
}

.myappointments-btn-secondary:hover {
    background: #545b62;
}

.myappointments-btn-danger {
    background: #dc3545;
    color: white;
}

.myappointments-btn-danger:hover {
    background: #c82333;
}

.myappointments-form-group {
    margin-bottom: 20px;
}

.myappointments-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.myappointments-form-control {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.myappointments-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.myappointments-alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.myappointments-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.myappointments-alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.myappointments-alert-close {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
}

.myappointments-alert-close:hover {
    opacity: 1;
}

/* MyFiles Styles */
/* MyFiles Header */
.myfiles-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-darker) 100%);
    color: white;
    padding: 80px 0 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.myfiles-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.myfiles-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.myfiles-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* MyFiles Container */
.myfiles-container {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: 70vh;
}

.myfiles-files-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.myfiles-file-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.myfiles-file-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.myfiles-file-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.myfiles-file-icon {
    text-align: center;
    margin-bottom: 20px;
}

.myfiles-file-icon i {
    font-size: 3.5rem;
    color: var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
    transition: all 0.3s ease;
}

.myfiles-file-card:hover .myfiles-file-icon i {
    transform: scale(1.1);
    color: var(--primary-dark);
}

.myfiles-file-info {
    text-align: center;
    margin-bottom: 25px;
}

.myfiles-file-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    word-break: break-word;
    line-height: 1.4;
}

.myfiles-file-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.myfiles-file-type {
    font-size: 0.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    background: rgba(59, 130, 246, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
}

.myfiles-file-actions {
    text-align: center;
}

.myfiles-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.myfiles-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.myfiles-btn:hover::before {
    left: 100%;
}

.myfiles-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.myfiles-btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.myfiles-btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.myfiles-empty-state {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px dashed rgba(59, 130, 246, 0.2);
}

.myfiles-empty-icon {
    margin-bottom: 30px;
}

.myfiles-empty-icon i {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.6;
}

.myfiles-empty-state h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.myfiles-empty-state p {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.myfiles-alert {
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 4px solid;
}

.myfiles-alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border-left-color: #dc3545;
}

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

.myfiles-alert i {
    font-size: 1.3rem;
}

/* MyFiles Responsive */
@media (max-width: 768px) {
    .myfiles-header {
        padding: 60px 0 40px 0;
    }

    .myfiles-header h1 {
        font-size: 2.5rem;
    }

    .myfiles-files-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .myfiles-file-details {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .myfiles-file-card {
        padding: 20px;
    }

    .myfiles-empty-state {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .myfiles-header h1 {
        font-size: 2rem;
    }

    .myfiles-header p {
        font-size: 1rem;
    }
}

/* ChangePassword Styles */
/* ChangePassword Header */
.changepassword-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-darker) 100%);
    color: white;
    padding: 80px 0 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.changepassword-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.changepassword-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.changepassword-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* ChangePassword Container */
.changepassword-container {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: 70vh;
}

.changepassword-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.changepassword-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.changepassword-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.changepassword-form-card h2 {
    margin-bottom: 25px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
}

.changepassword-form-card h2 i {
    color: var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

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

.changepassword-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.changepassword-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.changepassword-input-group i {
    position: absolute;
    left: 15px;
    color: var(--primary-color);
    z-index: 1;
    font-size: 1.1rem;
}

.changepassword-form-control {
    width: 100%;
    padding: 15px 15px 15px 45px;
    padding-right: 50px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.changepassword-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: white;
}

.changepassword-password-toggle {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
    z-index: 1;
    transition: all 0.3s ease;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.changepassword-password-toggle:hover {
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.changepassword-form-help {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
    display: block;
}

.changepassword-password-strength {
    font-size: 0.8rem;
    margin-top: 5px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
}

.changepassword-password-strength.weak { 
    color: #dc3545; 
    background: rgba(220, 53, 69, 0.1);
}

.changepassword-password-strength.medium { 
    color: #ffc107; 
    background: rgba(255, 193, 7, 0.1);
}

.changepassword-password-strength.strong { 
    color: #28a745; 
    background: rgba(40, 167, 69, 0.1);
}

.changepassword-password-strength.very-strong { 
    color: var(--primary-color); 
    background: rgba(59, 130, 246, 0.1);
}

.changepassword-password-match {
    font-size: 0.8rem;
    margin-top: 5px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
}

.changepassword-password-match.success { 
    color: #28a745; 
    background: rgba(40, 167, 69, 0.1);
}

.changepassword-password-match.error { 
    color: #dc3545; 
    background: rgba(220, 53, 69, 0.1);
}

.changepassword-form-actions {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    margin-top: 30px;
}

.changepassword-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.changepassword-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.changepassword-btn:hover::before {
    left: 100%;
}

.changepassword-btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.changepassword-btn-submit:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.changepassword-btn-submit:disabled {
    opacity: 0.7;
    transform: none;
    cursor: not-allowed;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.changepassword-btn-secondary {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.2);
}

.changepassword-btn-secondary:hover {
    background: linear-gradient(135deg, #5a6268, #495057);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

.changepassword-section-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.changepassword-section-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.changepassword-section-card h3 {
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.changepassword-section-card h3 i {
    color: var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

.changepassword-tips-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.changepassword-tip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.changepassword-tip-item:hover {
    transform: translateX(5px);
}

.changepassword-tip-item i {
    font-size: 1rem;
}

.changepassword-tip-item i.fa-check-circle {
    color: var(--success-color);
}

.changepassword-tip-item i.fa-times-circle {
    color: var(--danger-color);
}

.changepassword-security-warning {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.1));
    border-left: 4px solid var(--primary-color);
}

.changepassword-security-warning h3 {
    color: var(--primary-dark);
}

.changepassword-security-warning h3 i {
    color: var(--warning-color);
}

.changepassword-security-warning p {
    color: var(--primary-dark);
    margin-bottom: 10px;
    line-height: 1.6;
}

.changepassword-activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.changepassword-activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.changepassword-activity-item:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(5px);
}

.changepassword-activity-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.changepassword-activity-info {
    display: flex;
    flex-direction: column;
}

.changepassword-activity-text {
    font-weight: 500;
    color: #333;
}

.changepassword-activity-time {
    font-size: 0.8rem;
    color: #666;
}

.changepassword-alert {
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 4px solid;
}

.changepassword-alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border-left-color: #dc3545;
}

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

.changepassword-alert i {
    font-size: 1.3rem;
}

.changepassword-text-danger {
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

/* ChangePassword Responsive */
@media (max-width: 768px) {
    .changepassword-header {
        padding: 60px 0 40px 0;
    }

    .changepassword-header h1 {
        font-size: 2.5rem;
    }

    .changepassword-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .changepassword-form-card {
        padding: 30px 20px;
    }

    .changepassword-form-actions {
        flex-direction: column;
    }

    .changepassword-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .changepassword-header h1 {
        font-size: 2rem;
    }

    .changepassword-header p {
        font-size: 1rem;
    }
}

/* MyAppointments Responsive */
@media (max-width: 768px) {
    .myappointments-header h1 {
        font-size: 2rem;
    }
    
    .myappointments-grid {
        grid-template-columns: 1fr;
    }
    
    .myappointments-card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .myappointments-date {
        align-self: center;
    }
    
    .myappointments-filter-tabs {
        justify-content: center;
    }
    
    .myappointments-quick-actions {
        justify-content: center;
    }
    
    .myappointments-actions {
        flex-direction: column;
    }
}