.erider-rent-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #eaf3ff;
    border: 1px solid #cfe3ff;
    border-radius: 8px;
    padding: 14px 18px;
    margin: 16px 0;
}

.erider-rent-box__icon {
    font-size: 26px;
    line-height: 1;
}

.erider-rent-box__info {
    flex: 1;
}

.erider-rent-box__label {
    font-size: 13px;
    color: #1a56db;
    font-weight: 600;
}

.erider-rent-box__amount {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
}

.erider-rent-box__amount span {
    font-size: 13px;
    font-weight: 400;
    color: #555;
}

.erider-rent-box__duration {
    font-size: 12px;
    color: #666;
}

.erider-rent-now-btn {
    background: #1a56db;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.erider-rent-now-btn:hover {
    background: #123f9e;
}

.erider-rent-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 100000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.erider-rent-modal-overlay.is-open {
    display: flex;
}

.erider-rent-modal {
    background: #fff;
    border-radius: 10px;
    padding: 28px;
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.erider-rent-modal h3 {
    margin-top: 0;
}

.erider-rent-modal__close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #888;
}

.erider-rent-modal__notice {
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 14px;
    font-size: 14px;
}

.erider-rent-modal__notice.success {
    background: #e6f6ec;
    color: #146c34;
    border: 1px solid #b6e3c6;
}

.erider-rent-modal__notice.error {
    background: #fdecec;
    color: #9d1c1c;
    border: 1px solid #f5c2c2;
}

#erider-rent-form p {
    margin: 0 0 12px;
}

#erider-rent-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

#erider-rent-form input,
#erider-rent-form textarea {
    width: 100%;
    padding: 9px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
}

.erider-rent-submit-btn {
    background: #1a56db;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.erider-rent-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}