/* Login Options Modal Styles */
#loginOptionsModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#loginOptionsModal.show {
    opacity: 1;
    visibility: visible;
}

.login-options-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-options-modal {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#loginOptionsModal.show .login-options-modal {
    transform: scale(1) translateY(0);
}

.login-options-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.login-options-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.login-options-content {
    padding: 30px;
}

.login-option-btn {
    width: 100%;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    font-family: inherit;
}

.login-option-btn:last-child {
    margin-bottom: 0;
}

.login-option-btn:hover {
    border-color: #10b981;
    background: #ecfdf5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.login-option-btn .fas:first-child {
    font-size: 32px;
    color: #6b7280;
    transition: color 0.3s;
}

.customer-btn:hover .fas:first-child {
    color: #3b82f6;
}

.staff-btn:hover .fas:first-child {
    color: #8b5cf6;
}

.option-content {
    flex: 1;
}

.option-content h4 {
    color: #1f2937;
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
}

.option-content p {
    color: #6b7280;
    margin: 0;
    font-size: 14px;
}

.login-option-btn .fas:last-child {
    font-size: 16px;
    color: #9ca3af;
    transition: all 0.3s;
}

.login-option-btn:hover .fas:last-child {
    color: #10b981;
    transform: translateX(5px);
}
