.open-leasing-widget {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 16px 20px;
    margin: 10px 0;
    min-width: 320px;
    max-width: 500px;
}
.open-leasing-widget img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-right: 18px;
    display: block;
}
.open-leasing-widget > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.open-leasing-widget .leasing-title-row {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}
.open-leasing-widget .leasing-title-row b {
    font-weight: 700;
    color: #222;
    font-size: 1rem;
    margin-right: 6px;
}
.open-leasing-widget .leasing-title-row .plan-available {
    color: #888;
    font-weight: 400;
    font-size: 1rem;
    margin-right: 6px;
}
.open-leasing-widget .leasing-title-row #open-leasing-more-infos {
    color: #888;
    font-size: 0.85em;
    font-style: normal;
    color: #4169E1;
    font-size: 1rem;
    cursor: pointer;
    margin-left: 4px;
}
.open-leasing-widget .leasing-detail-row {
    color: #aaa;
    font-size: 0.8rem;
    font-weight: 400;
}
.open-leasing-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.35);
}
.open-leasing-modal-content {
    background: #fff;
    max-width: 80vw;
    width: 80vw;
    max-height: 80vh;
    margin: 60px auto;
    padding: 32px 24px 16px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}
.open-leasing-modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4169E1;
    cursor: pointer;
}
.open-leasing-cms-content {
    max-height: calc(80vh - 48px);
    overflow-y: auto;
}
.open-leasing-info-btn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #888;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85em;
    font-weight: 700;
    margin-left: 4px;
    cursor: pointer;
    transition: box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(136,136,136,0.08);
    outline: none;
    padding: 0;
}
.open-leasing-info-btn:focus,
.open-leasing-info-btn:hover {
    box-shadow: 0 2px 8px rgba(136,136,136,0.15);
    background: #f5f5f5;
}
.open-leasing-info-btn span {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.85em;
    line-height: 1;
    color: #888;
}
