.forte-calculator-container {
    background: #fff; padding: 30px; border-radius: 15px; box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', sans-serif; max-width: 1000px; margin: auto;
}
.forte-header {
    font-size: 24px; font-weight: bold; text-align: center; color: #2c3e50; margin-bottom: 25px; border-bottom: 2px solid #e67e22; padding-bottom: 10px;
}
#category-selector select, #category-selector button {
    padding: 12px; border-radius: 8px; border: 1px solid #ddd; margin: 5px; flex: 1; min-width: 180px;
}
#add-to-basket { background: #2c3e50; color: #fff; cursor: pointer; border: none; transition: 0.3s; }
#add-to-basket:hover { background: #e67e22; }
.table-container {
     overflow-x: auto; 
     margin-top: 25px;
     border-bottom: 4px solid #e67e22; 
    }
#selected-items-table { width: 100%; border-collapse: collapse; }
#selected-items-table th { background: #f8f9fa; padding: 15px; text-align: left; color: #7f8c8d; }
#selected-items-table td { padding: 15px; border-bottom: 1px solid #eee; }
#selected-items-table input { width: 60px; padding: 5px; border-radius: 5px; border: 1px solid #ddd; }
#forte-customer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
    background: #fdf2e9;
    padding: 20px;
    border-radius: 10px;
    border-bottom: 4px solid #e67e22;
}

#forte-customer-info input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    
}

#cust-email {
    grid-column: 1 / -1 !important;
}

.total-bar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-top: 30px; 
    padding: 20px; 
    background: #2c3e50; 
    color: #fff; 
    border-radius: 10px; 
    border-bottom: 4px solid #e67e22;
}
.total-text { font-size: 20px; font-weight: bold; }
#grand-total { color: #e67e22; }
.button-group button { padding: 12px 20px; border-radius: 8px; border: none; cursor: pointer; font-weight: bold; margin-left: 10px; }



@media screen and (max-width: 768px) {

    #forte-app,
    .forte-calculator-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    #forte-customer-info {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 16px !important;
        box-sizing: border-box !important;
    }

    #forte-customer-info input {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 12px 0 !important;
        box-sizing: border-box !important;
        grid-column: unset !important;
    }

    #forte-customer-info input:last-child {
        margin-bottom: 0 !important;
    }
    .total-bar {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px;
    }

    .total-text {
        width: 100%;
        text-align: left;
        font-size: 18px;
    }

    .button-group {
        display: flex;
        width: 100%;
        gap: 10px;
    }

    .button-group button {
        flex: 1;
        margin: 0 !important;
        width: 100%;
    }
}