/* Koltuk Yıkama Modülü CSS - Mobil Uygulama Entegreli Tasarım */

.koltuk-yikama-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Koltuk Başlığı */
.koltuk-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #50C878 0%, #228B22 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(80, 200, 120, 0.3);
}

.koltuk-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.koltuk-title i {
    font-size: 28px;
}

.koltuk-title h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.koltuk-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

/* Randevu Kartları Grid - Mobil Uygulama GridView.count benzeri */
.appointment-cards-grid {
    margin-bottom: 30px;
}

.appointment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.appointment-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.appointment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.appointment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #50C878 0%, #228B22 100%);
}

/* Kart Renkleri - Mobil Uygulama Color benzeri */
.green-card::before {
    background: linear-gradient(90deg, #2E7D32 0%, #1B5E20 100%);
}

.blue-card::before {
    background: linear-gradient(90deg, #1976D2 0%, #0D47A1 100%);
}

.orange-card::before {
    background: linear-gradient(90deg, #FF9800 0%, #E65100 100%);
}

.purple-card::before {
    background: linear-gradient(90deg, #9C27B0 0%, #4A148C 100%);
}

.card-icon {
    font-size: 32px;
    color: #50C878;
    margin-bottom: 15px;
}

.green-card .card-icon {
    color: #2E7D32;
}

.blue-card .card-icon {
    color: #1976D2;
}

.orange-card .card-icon {
    color: #FF9800;
}

.purple-card .card-icon {
    color: #9C27B0;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.card-content p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.4;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

/* Hızlı İstatistikler */
.quick-statistics-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.quick-statistics-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #50C878;
    background: #f0f8f0;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #50C878;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

/* Günlük İşlemler - ActionButton benzeri */
.daily-operations-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.daily-operations-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.operations-buttons {
    display: flex;
    gap: 15px;
}

.operation-btn {
    flex: 1;
    background: #50C878;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 60px;
}

.operation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 200, 120, 0.3);
}

.expense-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.expense-btn:hover {
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.summary-btn {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.summary-btn:hover {
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

/* Son Randevular */
.recent-appointments-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.recent-appointments-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.no-appointments {
    text-align: center;
    padding: 40px 20px;
    color: #95a5a6;
}

.no-appointments i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.no-appointments p {
    font-size: 16px;
    margin: 0;
}

.appointments-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.appointment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #50C878;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.appointment-item:hover {
    background: #e8f5e8;
    border-left-color: #2E7D32;
}

.appointment-info {
    flex: 1;
}

.customer-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.appointment-time {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 2px;
}

.service-type {
    font-size: 12px;
    color: #95a5a6;
    background: #ecf0f1;
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
}

.appointment-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-completed,
.status-tamamlandı {
    background: #d4edda;
    color: #155724;
}

.status-pending,
.status-bekliyor {
    background: #fff3cd;
    color: #856404;
}

.status-cancelled,
.status-iptal {
    background: #f8d7da;
    color: #721c24;
}

/* Hata Durumu */
.koltuk-error {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.koltuk-error i {
    font-size: 64px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.koltuk-error h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.koltuk-error p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.retry-btn {
    background: #50C878;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.retry-btn:hover {
    background: #228B22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 200, 120, 0.3);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .koltuk-yikama-container {
        padding: 15px;
    }

    .appointment-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .operations-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .appointment-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .statistics-grid {
        grid-template-columns: 1fr;
    }

    .koltuk-title {
        flex-direction: column;
        gap: 8px;
    }

    .koltuk-title h2 {
        font-size: 20px;
    }
}