/* Cafe Otomasyon Sistemi - Ana Stil Dosyası */

/* Genel Stiller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Yan Menü */
.nav-link {
    padding: 10px 15px;
    border-radius: 0;
    transition: all 0.2s;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    background-color: #0d6efd;
    font-weight: 500;
}

/* Kartlar */
.card {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: none;
    margin-bottom: 20px;
}

.card-header {
    border-radius: 8px 8px 0 0;
    font-weight: 500;
}

/* Butonlar */
.btn {
    border-radius: 6px;
    padding: 8px 16px;
    font-weight: 500;
}

.btn-sm {
    padding: 4px 10px;
    font-size: 0.85rem;
}

/* Form Elemanları */
.form-control, .form-select {
    border-radius: 6px;
    padding: 10px 15px;
    border: 1px solid #ced4da;
}

.form-control:focus, .form-select:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.input-group-text {
    background-color: #f8f9fa;
    border-color: #ced4da;
}

/* Tablolar */
.table {
    border-radius: 8px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
}

.table thead th {
    background-color: #f8f9fa;
    border-top: none;
    font-weight: 600;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Badges */
.badge {
    padding: 5px 10px;
    font-weight: 500;
    border-radius: 15px;
}

/* Alertler */
.alert {
    border-radius: 8px;
    border: none;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Özel Stiller */
.user-info {
    padding: 8px 15px;
    background-color: #f8f9fa;
    border-radius: 20px;
    font-size: 14px;
}

/* Responsive ayarlamalar */
@media (max-width: 768px) {
    .col-md-2 {
        min-height: auto !important;
    }
    
    .nav-link {
        padding: 8px 15px;
    }
    
    .card {
        margin-bottom: 15px;
    }
    
    .user-info {
        display: none;
    }
} 