.fsc-container {
    max-width: 900px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.fsc-section {
    background-color: #ffead3;
    padding: 12px 15px;
    margin-bottom: 12px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.fsc-section h3 {
    margin: 0 0 3px 0;
    font-size: 18px;
    color: #333;
}

.text-muted {
    color: #666;
    font-size: 13px;
    margin: 0 0 10px 0;
}

/* Grid layouts */
.fsc-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.fsc-truck-grid {
    flex-direction: column;
}

.fsc-truck-grid .fsc-item {
    flex: 1 1 100%;
}

.fsc-item {
    flex: 1 1 180px;
    padding: 8px 12px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fsc-item:hover {
    background: #f0f7ff;
    border-color: #5bc0de;
}

.fsc-item.selected {
    background: #d9edf7;
    border-color: #337ab7;
}

.fsc-item label {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    font-weight: 500;
    cursor: pointer;
    color: #333;
    font-size: 14px;
    pointer-events: none;
}

.fsc-item input[type="checkbox"],
.fsc-item input[type="radio"] {
    pointer-events: auto;
}

.fsc-item input[type="checkbox"],
.fsc-item input[type="radio"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Whitecard special styling */
.fsc-whitecard-item {
    background: #fffef0;
    border-color: #f0e68c;
}

.fsc-whitecard-item.selected {
    background: #fff8dc;
    border-color: #daa520;
}

/* Price Summary */
.fsc-price-summary {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4edda 100%);
    padding: 15px;
    border-radius: 6px;
    border: 2px solid #28a745;
    margin-bottom: 12px;
}

.fsc-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(40, 167, 69, 0.3);
}

.fsc-summary-header h3 {
    margin: 0;
    font-size: 18px;
    color: #155724;
}

.fsc-total-price {
    text-align: right;
}

.fsc-price-display {
    font-size: 28px;
    font-weight: bold;
    color: #28a745;
}

.fsc-savings {
    font-size: 14px;
    color: #dc3545;
    font-weight: 600;
    margin-top: 3px;
}

.fsc-savings #savingsAmount {
    font-size: 16px;
}

/* Selected items list */
.fsc-selected-items {
    margin-top: 8px;
}

#selectedItemsList {
    font-size: 14px;
}

#selectedItemsList ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#selectedItemsList li {
    padding: 5px 0;
    border-bottom: 1px dotted #aaa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#selectedItemsList li:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: 500;
    color: #333;
}

/* Discount info */
.fsc-discount-info {
    background: #fff3cd;
    padding: 8px 12px;
    border-radius: 5px;
    margin-top: 10px;
    text-align: center;
    font-weight: 600;
    color: #856404;
    font-size: 14px;
}

/* Email Section */
.fsc-email-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
    border: 2px solid #5bc0de;
}

.fsc-email-fields {
    max-width: 450px;
}

.fsc-form-group {
    margin-bottom: 10px;
}

.fsc-form-group label {
    display: block;
    margin-bottom: 3px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.fsc-form-group small {
    font-weight: normal;
    color: #666;
}

.fsc-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.fsc-input:focus {
    outline: none;
    border-color: #5bc0de;
    box-shadow: 0 0 0 3px rgba(91, 192, 222, 0.2);
}

.fsc-btn-primary {
    background: linear-gradient(135deg, #337ab7 0%, #286090 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.fsc-btn-primary:hover {
    background: linear-gradient(135deg, #286090 0%, #204d74 100%);
    transform: translateY(-1px);
}

.fsc-btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Alerts */
.fsc-alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 12px;
    border-radius: 5px;
}

.fsc-alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 12px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .fsc-summary-header {
        flex-direction: column;
    }
    
    .fsc-total-price {
        margin-top: 10px;
        text-align: left;
    }
    
    .fsc-price-display {
        font-size: 24px;
    }
    
    .fsc-item {
        flex: 1 1 100%;
    }
}
