/* Restaurant-specific overrides for auth styles */
.restaurant-auth-verification-container .auth-verification-container {
    max-width: 100%; /* Restaurant might need wider */
}

/* Restaurant method buttons might need different colors */
.restaurant-method-btn.active {
    border-color: #28a745; /* Green for restaurant */
    background: #28a745;
}

.restaurant-code-input:focus {
    border-color: #28a745; /* Green focus for restaurant */
}

/* Restaurant verification specific styles */
#restaurantVerificationStatus.verification-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 0.75rem;
    border-radius: 0.375rem;
}

#restaurantVerificationStatus.verification-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 0.75rem;
    border-radius: 0.375rem;
}

/*------------------------------------------------------------------------------------------*/
/* Restaurant verification styles */
.restaurant-method-btn {
    padding: 10px 15px;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.restaurant-method-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.restaurant-method-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.restaurant-code-input {
    width: 40px;
    height: 50px;
    text-align: center;
    font-size: 1.5rem;
    border: 2px solid #dee2e6;
    border-radius: 5px;
    margin: 0 5px;
}

.restaurant-code-input.filled {
    border-color: #007bff;
}

.restaurant-verification-status {
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    display: none;
}

.restaurant-verification-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.restaurant-verification-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.restaurant-timer-expired {
    color: #dc3545;
}

.btn-resend {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    padding: 5px 10px;
}

.btn-resend:disabled {
    color: #6c757d;
    cursor: not-allowed;
}