/* Main Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

/* Header & Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
}

.language-selector img {
    transition: transform 0.2s;
    border: 1px solid #dee2e6;
}

.language-selector img:hover {
    transform: scale(1.1);
}

/* Cards */
.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-header {
    border-radius: 8px 8px 0 0 !important;
}

/* Buttons */
.btn {
    border-radius: 5px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
}

.btn-primary {
    background-color: #4361ee;
    border-color: #4361ee;
}

.btn-primary:hover {
    background-color: #3a56d4;
    border-color: #3a56d4;
}

.btn-info {
    background-color: #4cc9f0;
    border-color: #4cc9f0;
}

.btn-success {
    background-color: #2ec4b6;
    border-color: #2ec4b6;
}

.btn-danger {
    background-color: #e63946;
    border-color: #e63946;
}

/* Forms */
.form-control, .form-select {
    border-radius: 5px;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
}

.form-control:focus, .form-select:focus {
    border-color: #4361ee;
    box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
}

/* Tables */
.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

.table th {
    font-weight: 600;
    color: #495057;
}

/* Türbin sayfası */
.notes-container {
    max-height: 400px;
    overflow-y: auto;
}

/* Admin Dashboard */
.bg-primary {
    background-color: #4361ee !important;
}

.bg-success {
    background-color: #2ec4b6 !important;
}

.bg-info {
    background-color: #4cc9f0 !important;
}

.bg-warning {
    background-color: #ffbe0b !important;
}

/* Footer */
footer {
    margin-top: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card {
        margin-bottom: 1rem;
    }
    
    .btn-group {
        display: flex;
        flex-direction: column;
    }
    
    .btn-group .btn {
        margin-bottom: 0.5rem;
        border-radius: 5px !important;
    }
}