/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #a30000;
    --secondary-color: #ffffff;
    --text-color: #333333;
    --bg-light: #f8f9fa;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --primary-hover: #8a0000;
    --primary-light: #f8d7da;
    --primary-dark: #721c24;
    --bg-color: #fff;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Login Sayfası Stilleri */
.public-view {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.public-view::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.login-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

.login-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    animation: fadeIn 0.5s ease-out;
}

.login-header {
    text-align: center;
    padding: 2.5rem 1.5rem 1.5rem;
    position: relative;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
}

.login-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #dc3545;
    border-radius: 3px;
}

.login-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.login-header h1 {
    color: var(--primary-dark);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.login-header p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.login-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
    z-index: 2;
    pointer-events: none;
}

.input-group .form-control {
    width: 100%;
    height: 45px;
    padding: 10px 15px 10px 45px;
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

.input-group .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(163, 0, 0, 0.25);
    background-color: #fff;
}

.input-group .form-control::placeholder {
    color: #999;
    opacity: 0.8;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 14px;
    color: #495057;
}

.forgot-link {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.btn-block {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #dc3545;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-block i {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.btn-block:hover {
    background-color: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
}

.login-footer {
    text-align: center;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

/* Login Sayfası Responsive */
@media (max-width: 480px) {
    .login-container {
        padding: 0 1rem;
    }
    
    .login-box {
        border-radius: 15px;
    }
    
    .login-header {
        padding: 2rem 1rem 1rem;
    }
    
    .login-logo {
        max-width: 100px;
    }
    
    .login-header h1 {
        font-size: 1.5rem;
    }
    
    .login-form {
        padding: 1.5rem;
    }
    
    .input-group .form-control {
        height: 45px;
    }
    
    .btn-block {
        height: 45px;
    }
}

/* Alert Stilleri */
.alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.alert i {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    stroke-width: 2;
}

.alert-danger {
    color: var(--primary-dark);
    background-color: rgba(248, 215, 218, 0.95);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Grid Sistemi */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

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

.btn-primary:hover {
    background-color: #8a0000;
    border-color: #8a0000;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

/* Form Elemanları */
.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(163, 0, 0, 0.25);
}

/* Tablolar */
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: var(--text-color);
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid var(--border-color);
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid var(--border-color);
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-bottom: none;
}

.table-hover tbody tr:hover {
    background-color: rgba(163, 0, 0, 0.05);
}

/* Kartlar */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: none;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.card-header {
    padding: 1rem 1.5rem;
    margin-bottom: 0;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 10px 10px 0 0 !important;
}

.card-body {
    flex: 1 1 auto;
    padding: 1.25rem;
}

/* Navbar */
.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: #fff;
}

.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
    color: #fff;
    text-decoration: none;
}

/* Sidebar */
.sidebar {
    width: 260px;
    background: #a30000;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.sidebar .nav-link {
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
}

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

/* Alert */
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 10px;
}

.alert-primary {
    color: var(--primary-dark);
    background-color: var(--primary-light);
    border-color: var(--primary-color);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.5em 1em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 50px;
}

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

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 1.75rem auto;
    max-width: 500px;
    pointer-events: none;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: 10px;
    outline: 0;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 10px 10px 0 0;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        position: relative;
        height: auto;
        padding-top: 0;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* DataTables Özelleştirmeleri */
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: var(--primary-hover) !important;
    color: white !important;
    border-color: var(--primary-hover) !important;
}

/* Select2 Özelleştirmeleri */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary-color);
}

.select2-container--default .select2-selection--single:focus {
    border-color: var(--primary-color);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Admin Panel Stilleri */
.admin-view {
    display: flex;
    min-height: 100vh;
}

.page-container {
    flex: 1;
    margin-left: 250px;
    padding-top: 60px;
}

.navbar-custom {
    background-color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-custom .nav-link {
    color: #fff;
    padding: 0.5rem 1rem;
}

.navbar-custom .nav-link:hover {
    color: rgba(255,255,255,0.8);
}

.navbar-custom .icon {
    width: 20px;
    height: 20px;
}

.user-dropdown-menu {
    min-width: 200px;
    padding: 0.5rem 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dropdown-item {
    padding: 0.5rem 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.dropdown-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 0.5rem 0;
}

.avatar-xs {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-xs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    color: #fff;
}

/* Sidebar Menü */
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin: 0;
}

.sidebar-menu .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s;
}

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

.sidebar-menu .icon {
    width: 20px;
    height: 20px;
}

.sidebar-brand {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-brand img {
    max-width: 150px;
}

.brand-logo-mini {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .page-container {
        margin-left: 0;
    }
    
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.sidebar-off {
        transform: translateX(0);
    }
    
    .brand-logo {
        display: none;
    }
    
    .brand-logo-mini {
        display: block;
    }
    
    .brand-logo-mini img {
        max-width: 40px;
    }
}

/* Preloader */
#pre-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.app-loader {
    text-align: center;
}

.loading {
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

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

.form-signin .card {
    animation: fadeIn 0.5s ease-out;
}

.form-group {
    animation: fadeIn 0.5s ease-out;
    animation-fill-mode: both;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }

/* Responsive Düzenlemeler */
@media (max-width: 480px) {
    .form-signin .card {
        border-radius: 10px;
    }
    
    .form-signin .card-header {
        padding: 1.5rem 1rem 0;
    }
    
    .form-signin .card-header img {
        max-width: 150px;
    }
    
    .form-signin .card-header h2 {
        font-size: 1.5rem;
    }
    
    .form-signin .card-body {
        padding: 1.5rem;
    }
    
    .form-control {
        height: 45px;
    }
    
    .btn-lg {
        height: 45px;
    }
}

/* Admin Container */
.admin-container {
    display: flex;
    min-height: 100vh;
    background-color: #f5f6fa;
}

/* Sidebar Stilleri */
.sidebar-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-brand {
    display: block;
    text-decoration: none;
    width: 100%;
}

.brand-logo {
    height: auto;
    width: 180px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    filter: none;
}

.brand-logo-mini {
    display: none;
    height: 35px;
    width: auto;
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
}

.sidebar-close i {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.sidebar-content {
    height: calc(100% - 70px);
    overflow-y: auto;
}

.nav-menu {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.nav-item {
    margin: 0.25rem 0;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-link i {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    stroke-width: 2;
    color: rgba(255,255,255,0.8);
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.nav-link:hover i,
.nav-item.active .nav-link i {
    color: #fff;
}

/* Ana İçerik */
.main-content {
    flex: 1;
    margin-left: 260px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

/* Header Stilleri */
.header {
    background: #fff;
    border-bottom: 1px solid rgba(220, 53, 69, 0.1);
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.05);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-left {
    display: flex;
    align-items: center;
}

.menu-toggle {
    background: none;
    border: none;
    color: #dc3545;
    padding: 0.5rem;
    cursor: pointer;
    display: none;
}

.menu-toggle i {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-item {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: #495057;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.dropdown-toggle:hover {
    color: #dc3545;
}

.dropdown-toggle i {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.dropdown-menu {
    background: #fff;
    border: 1px solid rgba(220, 53, 69, 0.1);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.1);
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    padding: 0.5rem 0;
    display: none;
    z-index: 1000;
}

.dropdown-menu.show {
    display: block;
    animation: fadeInDown 0.2s ease;
}

.dropdown-item {
    color: #495057;
}

.dropdown-item:hover {
    background: rgba(220, 53, 69, 0.05);
    color: #dc3545;
}

.dropdown-item.active {
    background: #dc3545;
    color: #fff;
}

.dropdown-item i {
    color: inherit;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

/* İçerik Alanı */
.content-wrapper {
    flex: 1;
    padding: 1.5rem;
    background: #f5f6fa;
}

.content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 1.5rem;
}

/* Footer */
.footer {
    background: #fff;
    border-top: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }
    
    .sidebar {
        transform: translateX(-100%);
    }
    
    .brand-logo {
        width: 160px;
    }
}

@media (max-width: 576px) {
    .user-name {
        display: none;
    }
    
    .header {
        padding: 0 1rem;
    }
    
    .content-wrapper {
        padding: 1rem;
    }
    
    .content {
        padding: 1rem;
    }
    
    .dropdown-menu {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        border-radius: 1rem 1rem 0 0;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .brand-logo {
        width: 140px;
    }
    
    .sidebar-header {
        padding: 1rem;
    }
}

/* Animasyonlar */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Styles */
.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--warning-color);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--danger-color);
}

.badge {
    padding: 0.5em 1em;
    border-radius: 50px;
}

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

.modal-content {
    border: none;
    border-radius: 10px;
}

.modal-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 10px 10px 0 0;
}

.page-link {
    color: var(--primary-color);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.stat-card {
    background: linear-gradient(45deg, var(--primary-color), #ff4444);
    color: var(--secondary-color);
}

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

.activity-item {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

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

@media (max-width: 768px) {
    .card {
        margin-bottom: 1rem;
    }
    
    .table-responsive {
        border-radius: 10px;
    }
}

/* Modal Özel Stilleri */
.modal-custom {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.modal-custom.show {
    display: block;
    opacity: 1;
}

.modal-custom .modal-dialog {
    transform: translateY(-50px);
    transition: transform 0.3s ease-in-out;
}

.modal-custom.show .modal-dialog {
    transform: translateY(0);
}

.modal-custom .modal-content {
    border-radius: 10px;
    overflow: hidden;
}

.modal-custom .modal-header {
    position: relative;
    padding: 1.25rem;
}

.modal-custom .modal-header .btn-close {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.modal-custom .modal-header .btn-close:hover {
    opacity: 1;
}

.modal-custom .modal-body {
    padding: 1.5rem;
}

.modal-custom .modal-footer {
    padding: 1.25rem;
    gap: 0.5rem;
}

.modal-custom .btn {
    min-width: 100px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.modal-custom .btn-danger {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.modal-custom .btn-danger:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.modal-custom .btn-secondary {
    background-color: var(--light-color);
    border-color: var(--border-color);
    color: var(--text-color);
}

.modal-custom .btn-secondary:hover {
    background-color: var(--border-color);
    border-color: var(--border-color);
}

/* Modal Animasyonları */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.modal-custom.animate-in {
    animation: modalFadeIn 0.3s ease-out forwards;
}

.modal-custom.animate-out {
    animation: modalFadeOut 0.3s ease-out forwards;
}