/* Base wrapper for the social login buttons. */
.dvt-sl-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 12px;
    font-size: 24px;
}

/* Generic social login button styles. */
.dvt-sl-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #000000;
    background-color: #ffffff;
    color: #000000;
    width: 230px;
    gap: 16px;
}

.dvt-sl-button:hover,
.dvt-sl-button:focus {
    text-decoration: none;
    border-color: #ccc;
}

.dvt-sl-label {
    font-weight: 500;
}

.dvt-sl-icon {
    display: block;
    width: 24px;
    height: auto;
}

.dvt-sl-icon-google {
    /* Specific overrides for Google icon if needed. */
}

.dvt-sl-icon-facebook {
    /* Specific overrides for Facebook icon if needed. */
}
