.support-widget-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.support-widget-content a,
.support-widget-content a:hover,
.support-widget-content a:visited,
.support-widget-content a:active {
    color: inherit;
    text-decoration: none;
}

.custom-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 180px;
    padding: 20px;
    margin-bottom: 10px !important;
    border-radius: 20px;
    background-color: white;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.contenido {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.icono {
    font-size: 40px;
    transition: color 0.3s ease;
}

.custom-title {
    font-size: 18px;
    margin: 0;
    font-weight: bold;
}

.custom-subtext {
    margin: 0;
    font-size: 14px;
}

.azul .icono,
.amarillo .icono,
.custom-title,
.custom-subtext {
    color: #2c2c2c;
}

.custom-btn:hover {
    background-color: #f0f0f0;
}

.custom-btn:hover .icono,
.custom-btn:hover .custom-title,
.custom-btn:hover .custom-subtext {
    color: #2c2c2c;
}

@media (prefers-color-scheme: dark) {
    .custom-btn {
        background-color: #1e1e1e;
    }

    .custom-title,
    .custom-subtext,
    .icono {
        color: #ffffff;
    }

    .custom-btn:hover {
        background-color: #3a3a3a;
    }

    .custom-btn:hover .icono,
    .custom-btn:hover .custom-title,
    .custom-btn:hover .custom-subtext {
        color: #ffffff;
    }

    .custom-btn .icono {
        color: #ffffff !important;
    }
}
