/**
 * Frontend Randevu Formu CSS
 * 24/7 Randevu Sistemi Stilleri
 */

/* Ana Container */
.oyt-appointment-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.oyt-appointment-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
}

/* Adım Navigasyon */
.oyt-appointment-step {
    margin-bottom: 30px;
}

.oyt-appointment-step h3 {
    color: #34495e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    font-size: 20px;
    font-weight: 500;
}

/* Form Elementleri */
.oyt-form-group {
    margin-bottom: 20px;
}

.oyt-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.oyt-form-row .oyt-form-group {
    flex: 1;
    margin-bottom: 0;
}

.oyt-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 14px;
}

.oyt-form-group input,
.oyt-form-group select,
.oyt-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.oyt-form-group input:focus,
.oyt-form-group select:focus,
.oyt-form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    background: #f8fafc;
}

.oyt-form-group input:required:invalid {
    border-color: #e74c3c;
}

/* Butonlar */
.oyt-btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ecf0f1;
    color: #2c3e50;
    min-width: 120px;
    text-align: center;
}

.oyt-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.oyt-btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.oyt-btn-primary:hover {
    background: linear-gradient(135deg, #2980b9, #2c3e50);
}

.oyt-btn-secondary {
    background: #95a5a6;
    color: white;
}

.oyt-btn-secondary:hover {
    background: #7f8c8d;
}

.oyt-btn-success {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
}

.oyt-btn-success:hover {
    background: linear-gradient(135deg, #229954, #1e8449);
}

.oyt-btn-large {
    padding: 15px 30px;
    font-size: 16px;
    min-width: 200px;
}

.oyt-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Müşteri Kartı */
.oyt-customer-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.oyt-customer-card h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #2c3e50;
}

.oyt-customer-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.oyt-customer-detail {
    background: white;
    padding: 10px;
    border-radius: 5px;
    border-left: 3px solid #3498db;
}

.oyt-customer-detail strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Zaman Slotları */
.oyt-time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.oyt-time-slot {
    padding: 12px 15px;
    background: #ecf0f1;
    border: 2px solid #bdc3c7;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #2c3e50;
}

.oyt-time-slot:hover {
    background: #d5dbdb;
    border-color: #95a5a6;
    transform: translateY(-2px);
}

.oyt-time-slot.selected {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-color: #2980b9;
    color: white;
}

.oyt-time-slot.occupied {
    background: #e74c3c;
    border-color: #c0392b;
    color: white;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Hizmet Seçimi */
.oyt-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.oyt-service-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.oyt-service-card:hover {
    border-color: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.oyt-service-card.selected {
    border-color: #27ae60;
    background: linear-gradient(135deg, #d5f4e6, #a3e9c7);
}

.oyt-service-card h4 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 16px;
}

.oyt-service-card .price {
    font-size: 18px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 10px;
}

.oyt-service-card .description {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.4;
}

.oyt-service-quantity {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    color: #2c3e50;
}

/* Toplam Tutar */
.oyt-total-amount {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Özet */
.oyt-appointment-summary {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.oyt-appointment-summary h4 {
    margin-top: 0;
    color: #2c3e50;
}

.oyt-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.oyt-summary-item:last-child {
    border-bottom: none;
    font-weight: bold;
    font-size: 16px;
}

.oyt-summary-label {
    color: #7f8c8d;
    font-weight: 500;
}

.oyt-summary-value {
    color: #2c3e50;
    font-weight: 500;
}

/* Adım Navigasyonu */
.oyt-step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.oyt-step-navigation .oyt-btn + .oyt-btn {
    margin-left: 10px;
}

/* Mesajlar */
.oyt-search-result {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.oyt-search-result.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.oyt-search-result.info {
    background: #cce7ff;
    border: 1px solid #99d3ff;
    color: #004085;
}

.oyt-error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.oyt-success-message {
    text-align: center;
    padding: 40px 20px;
}

.oyt-success-icon {
    font-size: 64px;
    color: #27ae60;
    margin-bottom: 20px;
}

.oyt-success-message h3 {
    color: #27ae60;
    margin-bottom: 20px;
}

/* Loading */
.oyt-loading {
    text-align: center;
    padding: 20px;
    color: #7f8c8d;
    font-style: italic;
}

.oyt-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.oyt-loading-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.oyt-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: oyt-spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes oyt-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .oyt-appointment-wrapper {
        margin: 8px;
        padding: 12px;
    }
    
    .oyt-appointment-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .oyt-appointment-step h3 {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
    
    .oyt-form-group {
        margin-bottom: 15px;
    }
    
    .oyt-form-group label {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    .oyt-form-group input,
    .oyt-form-group select,
    .oyt-form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .oyt-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .oyt-form-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .oyt-form-row .oyt-form-group {
        margin-bottom: 15px;
    }
    
    .oyt-time-slots {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 8px;
    }
    
    .oyt-time-slot {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    .oyt-services-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .oyt-service-card {
        padding: 12px;
    }
    
    .oyt-service-card h4 {
        font-size: 14px;
    }
    
    .oyt-service-card .price {
        font-size: 16px;
    }
    
    .oyt-service-card .description {
        font-size: 12px;
    }
    
    .oyt-step-navigation {
        flex-direction: column;
        gap: 8px;
    }
    
    .oyt-step-navigation .oyt-btn {
        width: 100%;
        margin-left: 0 !important;
    }
    
    .oyt-customer-details {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .oyt-customer-detail {
        font-size: 13px;
        padding: 8px;
    }
    
    .oyt-total-amount {
        font-size: 16px;
        padding: 12px;
    }
    
    .oyt-appointment-summary h4 {
        font-size: 16px;
    }
    
    .oyt-summary-item {
        font-size: 13px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .oyt-appointment-wrapper {
        margin: 5px;
        padding: 10px;
    }
    
    .oyt-appointment-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .oyt-appointment-step h3 {
        font-size: 16px;
        margin-bottom: 12px;
        padding-bottom: 6px;
    }
    
    .oyt-form-group {
        margin-bottom: 12px;
    }
    
    .oyt-form-group label {
        font-size: 12px;
        margin-bottom: 3px;
    }
    
    .oyt-form-group input,
    .oyt-form-group select,
    .oyt-form-group textarea {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .oyt-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .oyt-time-slots {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .oyt-time-slot {
        padding: 6px 4px;
        font-size: 11px;
    }
    
    .oyt-service-card {
        padding: 10px;
    }
    
    .oyt-service-card h4 {
        font-size: 13px;
    }
    
    .oyt-service-card .price {
        font-size: 14px;
    }
    
    .oyt-service-card .description {
        font-size: 11px;
    }
    
    .oyt-customer-detail {
        font-size: 12px;
        padding: 6px;
    }
    
    .oyt-total-amount {
        font-size: 14px;
        padding: 10px;
    }
    
    .oyt-appointment-summary h4 {
        font-size: 14px;
    }
    
    .oyt-summary-item {
        font-size: 12px;
        padding: 6px;
    }
    
    .oyt-btn-large {
        padding: 10px 18px;
        font-size: 13px;
        min-width: auto;
    }
}

/* Plaka İpucu Sistemi */
.oyt-plate-hints {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    animation: slideDown 0.3s ease;
}

.oyt-plate-hints h4 {
    margin: 0 0 15px 0;
    color: #495057;
    font-size: 16px;
    font-weight: 600;
}

.oyt-hints-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.oyt-hint-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.oyt-hint-item:hover {
    border-color: #007bff;
    background: #f0f8ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.15);
}

.oyt-hint-content {
    flex: 1;
}

.oyt-hint-plate {
    font-weight: bold;
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 5px;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.oyt-hint-question {
    color: #6c757d;
    font-size: 14px;
    font-style: italic;
}

.oyt-hint-actions {
    display: flex;
    gap: 8px;
}

.oyt-hint-yes {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.oyt-hint-yes:hover {
    background: #218838;
    transform: scale(1.05);
}

.oyt-hint-no {
    background: #6c757d;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.oyt-hint-no:hover {
    background: #5a6268;
    transform: scale(1.05);
}

/* Telefon Doğrulama */
.oyt-phone-verification {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    text-align: center;
    animation: slideDown 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.verification-content {
    max-width: 400px;
    margin: 0 auto;
}

.verification-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.oyt-phone-verification h4 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
}

.oyt-phone-verification p {
    margin: 0 0 20px 0;
    opacity: 0.9;
    line-height: 1.5;
}

.phone-input-group {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.phone-input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.phone-input-group input {
    width: 100%;
    max-width: 120px;
    margin: 0 auto 15px;
    padding: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    background: rgba(255,255,255,0.9);
    color: #333;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
}

.phone-input-group input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.8);
    background: white;
}

.verification-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.verification-buttons .oyt-btn {
    min-width: 100px;
    font-weight: 600;
}

.verification-buttons .oyt-btn-success {
    background: #28a745;
    border: 2px solid #28a745;
}

.verification-buttons .oyt-btn-success:hover {
    background: #218838;
    border-color: #218838;
}

.verification-buttons .oyt-btn-secondary {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
}

.verification-buttons .oyt-btn-secondary:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.oyt-hint-item.loading {
    animation: pulse 1s infinite;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .oyt-hint-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .verification-buttons {
        flex-direction: column;
    }
    
    .phone-input-group input {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .oyt-plate-hints {
        padding: 15px;
    }
    
    .oyt-phone-verification {
        padding: 20px;
    }
    
    .verification-icon {
        font-size: 36px;
    }
    
    .oyt-phone-verification h4 {
        font-size: 18px;
    }
}

/* Ön Sorgulama Adımı */
.oyt-pre-question {
    text-align: center;
    padding: 40px 20px;
}

.pre-question-content {
    max-width: 500px;
    margin: 0 auto;
}

.pre-question-icon {
    font-size: 72px;
    margin-bottom: 20px;
    display: block;
    animation: bounce 2s infinite;
}

.oyt-pre-question h4 {
    font-size: 24px;
    color: #2c3e50;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.oyt-pre-question p {
    font-size: 16px;
    color: #6c757d;
    margin: 0 0 30px 0;
    line-height: 1.5;
}

.pre-question-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.pre-question-buttons .oyt-btn {
    min-width: 200px;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
}

.pre-question-buttons .oyt-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.pre-question-buttons .oyt-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.pre-question-buttons .oyt-btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.pre-question-buttons .oyt-btn-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.pre-question-buttons .oyt-btn-success:hover {
    background: linear-gradient(135deg, #0d7377 0%, #2dd55b 100%);
}

.btn-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.btn-text {
    flex: 1;
    line-height: 1.3;
}

.btn-text strong {
    font-size: 18px;
    display: block;
    margin-bottom: 3px;
}

.btn-text small {
    font-size: 13px;
    opacity: 0.9;
    font-weight: normal;
}

/* Bounce Animasyonu */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .pre-question-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pre-question-buttons .oyt-btn {
        min-width: 200px;
        max-width: 280px;
        padding: 15px;
    }
    
    .pre-question-icon {
        font-size: 48px;
        animation: none; /* Mobilde zıplayan arabayı gösterme */
    }
    
    .oyt-pre-question h4 {
        font-size: 18px;
    }
    
    .oyt-pre-question p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .oyt-pre-question {
        padding: 20px 10px;
    }
    
    .pre-question-buttons .oyt-btn {
        min-width: 180px;
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .btn-icon {
        font-size: 24px;
    }
    
    .btn-text strong {
        font-size: 14px;
    }
    
    .btn-text small {
        font-size: 11px;
    }
    
    .pre-question-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .oyt-pre-question h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .oyt-pre-question p {
        font-size: 13px;
        margin-bottom: 20px;
    }
}

/* Model Seçimi */
.oyt-form-group #vehicle_model_custom {
    margin-top: 10px;
    border: 2px dashed #007bff;
    background: #f8f9fa;
}

.oyt-form-group #vehicle_model_custom:focus {
    border-color: #0056b3;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.oyt-form-group select:disabled {
    background-color: #e9ecef;
    opacity: 0.6;
    cursor: not-allowed;
}

/* Araç Bilgileri Vurgusu */
.oyt-form-group label[for="vehicle_brand"],
.oyt-form-group label[for="vehicle_model"] {
    color: #0056b3;
    font-weight: 600;
}

.oyt-form-group select[name="vehicle_brand"]:focus,
.oyt-form-group select[name="vehicle_model"]:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

/* Aktif Randevu Uyarısı */
.oyt-search-result.warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.active-appointment-warning {
    text-align: center;
    padding: 20px;
}

.active-appointment-warning .warning-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.active-appointment-warning h3 {
    color: #856404;
    margin: 0 0 15px 0;
    font-size: 18px;
}

.active-appointment-warning p {
    margin: 10px 0;
    color: #856404;
}

.active-appointments-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.active-appointment-item {
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
    text-align: left;
}

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

.active-appointment-item .apt-info {
    display: block;
}

.active-appointment-item .apt-date {
    color: #495057;
    font-size: 14px;
}

.active-appointment-item .apt-status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 5px 0;
}

.active-appointment-item .apt-status.status-scheduled {
    background: #fff8e1;
    color: #ff8f00;
    border: 1px solid #ffc107;
}

.active-appointment-item .apt-status.status-confirmed {
    background: #e3f2fd;
    color: #1976d2;
    border: 1px solid #2196f3;
}

.active-appointment-item .apt-status.status-in_progress {
    background: #fff3e0;
    color: #f57c00;
    border: 1px solid #ff9800;
}

.active-appointment-item .apt-amount {
    color: #28a745;
    font-weight: bold;
    font-size: 14px;
}

.warning-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.warning-buttons .oyt-btn {
    min-width: 140px;
}

@media (max-width: 480px) {
    .warning-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .warning-buttons .oyt-btn {
        width: 100%;
        min-width: auto;
    }
    
    .active-appointment-warning .warning-icon {
        font-size: 36px;
    }
    
    .active-appointment-warning h3 {
        font-size: 16px;
    }
}