/* Ana stil ayarları */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    padding: 20px 0;
}

/* Navbar stilleri */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
}

/* Card stilleri */
.card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: none;
    margin-bottom: 1rem;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

/* Form stilleri */
.form-label {
    font-weight: 500;
    color: #495057;
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* Tablo stilleri */
.table {
    margin-bottom: 0;
}

.table th {
    font-weight: 600;
    background-color: #f8f9fa;
}

/* Badge stilleri */
.badge {
    padding: 0.5em 0.75em;
}

/* Footer stilleri */
.footer {
    background-color: #f8f9fa;
    padding: 1rem 0;
    margin-top: auto;
}

/* Sonraki Duruşma Bilgisi Kutusu */
.next-hearing-box {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.hearing-icon {
    background-color: #e9ecef;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.hearing-icon i {
    color: #6c757d;
    font-size: 24px;
}

.hearing-info {
    flex: 1;
}

.hearing-date, .hearing-time {
    margin-bottom: 8px;
}

.hearing-date:last-child, .hearing-time:last-child {
    margin-bottom: 0;
}

.hearing-date label, .hearing-time label {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 4px;
}

.hearing-date span, .hearing-time span {
    font-size: 16px;
    font-weight: 500;
    color: #212529;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .table-responsive {
        margin-bottom: 1rem;
    }
}

/* Ayarlar Sayfası Stilleri */
.settings-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.settings-header {
    text-align: center;
    margin-bottom: 3rem;
}

.settings-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.settings-section {
    background: var(--bg-color);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.section-header i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--primary-color);
}

.settings-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    transition: transform 0.2s;
}

.settings-item:hover {
    transform: translateY(-2px);
}

.item-content {
    flex: 1;
}

.item-content h3 {
    margin: 0;
    color: var(--text-primary);
}

.item-content p {
    margin: 0.5rem 0 0;
    color: var(--text-secondary);
}

/* Danger Zone */
.settings-section.danger {
    background: var(--danger-bg);
    border: 1px solid var(--danger-border);
}

.settings-section.danger .section-header i,
.settings-section.danger .section-header h2 {
    color: var(--danger-color);
}

.warning-text {
    color: var(--danger-color);
}

/* Dark Mode */
:root {
    --bg-color: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --border-color: #dee2e6;
    --primary-color: #2d313c;
    --danger-color: #dc3545;
    --danger-bg: #fff5f5;
    --danger-border: #ffcdd2;
}

[data-theme="dark"] {
    --bg-color: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #404040;
    --primary-color: #2d313c;
    --danger-color: #ff4d4d;
    --danger-bg: #2d1f1f;
    --danger-border: #4d2c2c;
}

/* Responsive */
@media (max-width: 992px) {
    .settings-content {
        grid-template-columns: 1fr;
    }
} 