.arriendo-similar-alert-section {
    margin-top: 1.5rem;
    padding: 0 1.5rem;
}

.similar-alert-card {
    background: #f6faff;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 14px 16px;
}

.similar-alert-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.similar-alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #ffffff;
    color: var(--primary-color, #1f7bff);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.similar-alert-head h3 {
    margin: 0 0 2px;
    color: #0b3551;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 800;
}

.similar-alert-head p {
    margin: 0;
    color: #0b3551;
    font-size: 0.9rem;
    line-height: 1.35;
}

.similar-alert-actions {
    display: grid;
    grid-template-columns: max-content max-content minmax(180px, 224px);
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.similar-alert-chip,
.similar-alert-button {
    min-height: 40px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    font-size: 0.9rem;
    line-height: 1.2;
    white-space: nowrap;
}

.similar-alert-chip {
    background: #ffffff;
    border: 1px solid #e5edf0;
    color: #0b3551;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.similar-alert-button {
    border: 1px solid var(--primary-color, #1f7bff);
    background: #ffffff;
    color: var(--primary-color, #1f7bff);
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;
    letter-spacing: 0;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.similar-alert-button:hover {
    background: var(--primary-color, #1f7bff);
    border-color: var(--primary-color, #1f7bff);
    color: #ffffff;
    transform: none;
    box-shadow: none;
}

@media (max-width: 1024px) {
    .arriendo-similar-alert-section {
        padding: 0 1rem;
    }
}

@media (max-width: 760px) {
    .similar-alert-actions {
        grid-template-columns: 1fr;
    }

    .similar-alert-chip,
    .similar-alert-button {
        width: 100%;
    }
}

.daily-alert-open {
    overflow: hidden;
}

.daily-alert-modal[hidden] {
    display: none;
}

.daily-alert-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.daily-alert-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.48);
}

.daily-alert-dialog {
    position: relative;
    width: min(720px, 100%);
    max-height: min(760px, calc(100vh - 40px));
    overflow: auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.24);
    padding: 24px;
}

.daily-alert-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid #dbeafe;
    background: #f6faff;
    color: #0b3551;
    box-shadow: none;
    padding: 0;
    line-height: 1;
    font-size: 22px;
    cursor: pointer;
}

.daily-alert-close:hover {
    background: #eaf3ff;
    color: var(--primary-color, #1f7bff);
    transform: none;
    box-shadow: none;
}

.daily-alert-dialog h2 {
    margin: 0 44px 6px 0;
    color: #0b3551;
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 800;
}

.daily-alert-intro,
.daily-alert-login p {
    margin: 0 0 18px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

.daily-alert-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.daily-alert-grid label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #334155;
    font-size: 0.88rem;
    font-weight: 700;
}

.daily-alert-grid input,
.daily-alert-grid select {
    width: 100%;
    min-height: 42px;
    border: 1px solid #dbe1ea;
    border-radius: 10px;
    background: #ffffff;
    color: #0f172a;
    padding: 9px 11px;
    font-size: 0.95rem;
}

.daily-alert-message {
    min-height: 22px;
    margin: 14px 0 0;
    color: #166534;
    font-size: 0.9rem;
    font-weight: 700;
}

.daily-alert-message.is-error {
    color: #b91c1c;
}

.daily-alert-submit {
    margin-top: 14px;
    min-height: 44px;
    border-radius: 11px;
    border: 1px solid var(--primary-color, #1f7bff);
    background: var(--primary-color, #1f7bff);
    color: #ffffff;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;
    letter-spacing: 0;
}

.daily-alert-submit:hover {
    background: var(--primary-hover, #165acc);
    border-color: var(--primary-hover, #165acc);
    color: #ffffff;
    transform: none;
    box-shadow: none;
}

.daily-alert-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 640px) {
    .daily-alert-dialog {
        padding: 20px;
    }

    .daily-alert-grid {
        grid-template-columns: 1fr;
    }

    .daily-alert-submit {
        width: 100%;
    }
}
