.dropdown-menu dropdown-menu-end show{
    z-index: 9956;
    position: relative;
}

.footer {
	padding: 1rem 0;
}

.login-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    background-color: white;
    align-items: center;
}

/* Hide the actual SDK-rendered buttons */
#g_id_onload { display: none !important; } /* Google One Tap container */
.fb-login-button { display: none !important; } /* Facebook default button */

/* Your custom button styling */
.custom-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;        
    height: 48px;
    padding: 0 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.custom-login-btn img {
    margin-right: 10px;
    height: 24px; /* Adjust icon size */
    width: 24px;
}

.google-btn {
    background-color: #fff;
    color: #4285F4;
    border: 1px solid #ddd;
}
.google-btn:hover {
    background-color: #f8f8f8;
    border-color: #cdd;
}

.facebook-btn {
    background-color: #1877F2;
    color: white;
    border: 1px solid #1877F2;
}
.facebook-btn:hover {
    background-color: #1464C4;
}

.apple-btn {
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #D2D2D7;
}
.apple-btn:hover {
    background-color: #333333;
}