
/* Dr. Farwa Appointments Styles */
.drfarwa-appointment-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.drfarwa-appointment-form-container h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 24px;
}

.drfarwa-form-group {
    margin-bottom: 20px;
}

.drfarwa-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #34495e;
}

.drfarwa-form-group .required {
    color: #e74c3c;
}

.drfarwa-form-group input,
.drfarwa-form-group select,
.drfarwa-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.drfarwa-form-group input:focus,
.drfarwa-form-group select:focus,
.drfarwa-form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.drfarwa-form-group input[type="date"] {
    cursor: pointer;
}

.drfarwa-submit-btn {
    width: 100%;
    padding: 15px;
    background: #043788 !important;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.drfarwa-submit-btn:hover {
    background: #021f5e !important;
}

.drfarwa-submit-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.drfarwa-message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}

.drfarwa-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.drfarwa-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.drfarwa-loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .drfarwa-appointment-form-container {
        margin: 10px;
        padding: 15px;
    }
    
    .drfarwa-appointment-form-container h3 {
        font-size: 20px;
    }
    
    .drfarwa-form-group input,
    .drfarwa-form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Admin Styles */
.drfarwa-admin-dashboard {
    padding: 20px 0;
}

.drfarwa-stats {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.drfarwa-stat-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.drfarwa-stat-box h3 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 16px;
}

.drfarwa-stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #3498db;
    margin: 0;
}

.drfarwa-actions {
    margin: 20px 0;
}

.drfarwa-status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.drfarwa-status-pending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.drfarwa-status-confirmed {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.drfarwa-status-completed {
    background: #cce5ff;
    color: #004085;
    border: 1px solid #99d5ff;
}

.drfarwa-status-cancelled {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
