body {
    box-sizing: border-box;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

/* Ajustes para evitar cortes de texto */
.window-notice .content-text1,
.window-notice .content {
    max-width: 90%;
    min-width: 250px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-size: 1rem;
    text-align: center;
    padding: 1rem;
    border: 2px solid #00723F; /* Borde visible */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* Sombra ligera */
}

/* Ajustes para evitar cortes de texto */
.window-notice .content-text1,
.window-notice .content {
    max-width: 80%;
    min-width: 250px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-size: 0.8rem;
    text-align: center;
    padding: 0.8rem;
}

/* Botones */
.content-buttons {
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem;
}

/* Estilo del enlace del botón */
.content-buttons a {
    text-decoration: none;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #00723F;
    color: #FFF;
    text-transform: uppercase;
    border-radius: 5px;
}

/* Hover para botones */
.content-buttons a:hover {
    background-color: #198754;
}

/* Estilos para enlaces */
.content-text a {
    color: #00723F;
    text-decoration: none;
}

/* Hover para enlaces */
.content-text a:hover {
    color: #006AB8;
    text-decoration: underline;
}

/* Estilos para texto destacado */
.content-text1 b {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto;
    padding: 5px;
}

@media (max-width: 768px) {
    .window-notice .content-text1,
    .window-notice .content {
        font-size: 0.9rem;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .window-notice .content-text1,
    .window-notice .content {
        font-size: 0.85rem;
        padding: 0.5rem;
        max-width: 90%;
    }
}
