/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.ep-br-recover-banner {
    background: linear-gradient(135deg, #f7fbff 0%, #eef6ff 100%);
    border: 1px solid #cfe1f7;
    border-left: 6px solid #2271b1;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(17, 24, 39, 0.08);
    margin: 16px 0;
    padding: 16px 18px;
}

.ep-br-recover-banner__top {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.ep-br-recover-banner__text {
    color: #1d2327;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    padding-right: 8px;
    width: 100%;
}

.ep-br-recover-banner__actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.ep-br-recover-banner__cta {
    background: linear-gradient(135deg, #2271b1 0%, #155d8f 100%);
    border: 1px solid #155d8f;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(17, 86, 140, 0.2);
    color: #ffffff !important;
    display: inline-flex;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    min-height: 36px;
    padding: 9px 16px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    white-space: nowrap;
}

.ep-br-recover-banner__cta:hover,
.ep-br-recover-banner__cta:focus {
    background: linear-gradient(135deg, #1b66a2 0%, #0f527f 100%);
    box-shadow: 0 10px 18px rgba(17, 86, 140, 0.24);
    color: #ffffff !important;
    text-decoration: none;
    transform: translateY(-1px);
}

.ep-br-recover-banner__dismiss {
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #b3c8e2;
    border-radius: 999px;
    color: #1f2937;
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 28px;
    height: 28px;
    justify-content: center;
    line-height: 1;
    margin: 1px 0 0;
    padding: 0;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    width: 28px;
}

.ep-br-recover-banner__dismiss span {
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    margin-top: -1px;
}

.ep-br-recover-banner__dismiss:hover {
    background-color: #edf4fc;
    border-color: #8fb2d6;
    color: #0f4d78;
}

.ep-br-recover-banner__dismiss:focus {
    outline: 2px solid #2271b1;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .ep-br-recover-banner__top {
        align-items: flex-start;
    }

    .ep-br-recover-banner__actions {
        width: 100%;
    }

    .ep-br-recover-banner__cta {
        width: auto;
        text-align: center;
    }
}
