.quote-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.left-column {
    flex: 3;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}


/* Table for settings layout */
.settings-table {
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
}

.file-picker-table {
    width: 100%;
    border-collapse: collapse;
}

.file-picker-cell {
    text-align: center;
    vertical-align: middle;
    padding: 0;
    margin: 0;
}

.styled-file-input {
    display: inline-block; 
    padding: 10px 15px;
    width: 300px;
    height: 50px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: white;
    cursor: pointer;
    transition: 0.3s;
}

.styled-file-input:hover {
    background: #f0f0f0;
}

.upload-note {
    font-size: 12px;
    color: #666;
    padding-left: 10px;
    white-space: nowrap;
    text-align: left;
    line-height: 1.2;
}

.underlined-link {
    text-decoration: underline;
    color: #616161;
}

/* Make viewer span both columns */
#viewer-container {
    width: 100%;
    height: 400px;
    background: #ddd;
    margin: 0 0;
}

/* Ensure buttons align properly */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Uniform button size */
.setting-btn {
    padding: 10px 15px;
    margin: 5px;
    min-width: 120px;
    height: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid #ccc;
    background-color: white;
    cursor: pointer;
    transition: 0.3s;
}

.setting-btn:hover {
    background-color: #f0f0f0;
}

.setting-btn.active {
    background-color: #008000;
    color: white;
    border-color: #006400;
}

.setting-btn.disabled {
    background-color: #ddd;
    color: #999;
    border-color: #ccc;
    cursor: not-allowed;
}



/* quote details */
.right-column {
    flex: 1;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.quote-details-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
    margin-top: 25px;
}

.vat-label {
    text-align: left;
    padding: 8px;
    font-size: 16px;
    width: 50%;
    font-weight: bold;
}

.vat-value {
    text-align: right;
    padding: 8px;
    font-size: 16px;
    font-weight: bold;
}


.inner-price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 0;
}

.inner-price-table tr {
    border: none;
    padding: 0 0;
}

.inner-price-table td {
    border: none;
    padding: 0 0;
}

.quote-label {
    text-align: left;
    padding: 2px;
    width: 50%;
    font-size: 12px;
    color: #777;
}

.quote-value {
    text-align: right;
    padding: 2px;
    font-size: 12px;
    color: #777;
}

/* Quantity picker container */
.quantity-picker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Quantity buttons */
.qty-btn {
    background: #ddd;
    border: none;
    padding: 5px 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 3px;
}

.qty-btn:hover {
    background: #ccc;
}

/* Quantity input */
#quantity {
    width: 50px;
    text-align: center;
    font-size: 16px;
    padding: 5px;
    border: 2px solid #ccc;
    border-radius: 3px;
}

/* Remove small arrows from number input fields */
#quantity {
    -moz-appearance: textfield; /* Firefox */
}

#quantity::-webkit-inner-spin-button,
#quantity::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.price-note {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
    margin-bottom: 0px;
    text-align: center;
    padding: 0 0;
}

.add-to-cart {
    background: orange;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.add-to-cart:hover{
    background: #e69500;
}


/* Manual quote section */
.manual-quote-section {
    background-color: #f5f5f5;
    padding: 15px;
    margin-top: 30px;
    border-radius: 8px;
    text-align: center;
}

.manual-quote-section h3 {
    margin-bottom: 10px;
}

.manual-quote-btn {
    display: inline-block;
    background: white;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-top: 10px;
    color: #333;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.manual-quote-btn:hover {
    background-color: #f0f0f0;
}