/* Apunta específicamente al elemento button con esa clase
   y mete !important en las propiedades clave */
/* button.ldsc-button {
    display: block !important;
    width: 100% !important;
    font-weight: 700 !important;
    background-color: #059669 !important;
    color: #ffffff !important;
    padding: 0.75em 1.5em !important;
    border: none !important;
    border-radius: 0.375rem !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    text-align: center !important;
    box-sizing: border-box !important;
    transition: opacity 0.2s ease !important;
  } */
/*   
  button.ldsc-button:hover {
    opacity: 0.9 !important;
    background-color: #047857 !important;
  }
  

.ldsc-enrolled-notice {
    background: #e6f4ea;
    color: #2e7d32;
    padding: 1em;
    border-radius: 0.375rem;
    font-weight: 600;
    text-align: center;
} */

.ldsc-disabled-notice {
    background-color: #fef2f2;
    color: #b91c1c;
    padding: 1em;
    border-radius: 0.375rem;
    font-weight: 600;
    text-align: center;
}

.ldsc-enrolled-box {
    border: 1px solid #d1fae5;
    background-color: #ecfdf5;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}
.ldsc-enrolled-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #059669;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}
.ldsc-check-icon {
    width: 1.5rem;
    height: 1.5rem;
}
.ldsc-progress-label {
    color: #047857;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}
.ldsc-progress-bar {
    background-color: #d1fae5;
    border-radius: 999px;
    height: 0.75rem;
    overflow: hidden;
    margin-bottom: 1rem;
}
.ldsc-progress-fill {
    background-color: #10b981;
    height: 100%;
    transition: width 0.4s ease;
}
.ldsc-continue-btn {
    display: inline-block;
    background-color: #059669;
    color: #fff;
    text-decoration: none;
    padding: 0.75em 1.5em;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.ldsc-continue-btn:hover {
  background-color: #047857;  /* o #036d56 si lo quieres aún más oscuro */
  color:            #ffffff;  /* asegúrate de que el texto siga blanco */
}