.request-container .product-selector .add-product {
    padding: 0 24px!important;
    line-height: 2rem!important;
    height: 2rem!important;
}
.lease-form {
    scroll-margin-top: 320px;
}
.lease-field {
    width: 100%;
    position: relative;
}
.lease-error {
    color: #e02b27;
    font-size: 0.75rem;
    margin-top: 7px;
}
.lease-input {
    border: 1px solid #bbb;
    border-radius: 6px;
    width: 100%;
    padding: 8px 12px;
    font-size: 16px;
    box-sizing: border-box;
}
.lease-label {
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}
.lease-required {
    color: #f00;
}
.lease-dropdown {
    position: absolute;
    z-index: 10;
    background: #fff;
    border: 1px solid #bbb;
    width: 100%;
    margin-top: 4px;
    max-height: 240px;
    overflow-y: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-radius: 6px;
    padding: 0;
    list-style: none;
}
.lease-dropdown-item {
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.2s;
}
.lease-dropdown-item:hover {
    background: #e6f0fa;
}
.lease-loading {
    color: #3498db;
    padding: 8px 12px;
    display: flex;
    align-items: center;
}
.lease-spinner {
    border: 2px solid #eee;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    animation: lease-spin 0.8s linear infinite;
    display: inline-block;
}
@keyframes lease-spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}
.lease-no-results {
    color: #888;
    padding: 8px 12px;
}
.lease-paging {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding: 8px 12px;
}
.lease-paging-btn {
    background: none;
    border: none;
    color: #1976d2;
    cursor: pointer;
    font-size: 12px;
    padding: 0 8px;
}
.lease-btn {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 8px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 8px;
}
.lease-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.lease-table {
    border: 1px solid #bbb;
    border-radius: 6px;
    width: 100%;
    margin-top: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.lease-table th, .lease-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.lease-table th {
    background: #f7f8fa;
    font-weight: 500;
}
