﻿/* Set padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}
.quick-feature:hover {
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: 0.3s ease;
}
.filter-bar .btn {
    border-radius: 25px;
    font-weight: 600;
    padding: 8px 16px;
    transition: all 0.2s ease;
}

    .filter-bar .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .filter-bar .btn.active {
        background-color: #007bff;
        color: #fff;
    }
.form-label {
    font-weight: 600;
    color: #333;
}

.form-select {
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: border-color 0.3s ease;
}

    .form-select:focus {
        border-color: #007bff;
        box-shadow: 0 0 5px rgba(0,123,255,0.3);
    }

.btn-primary {
    border-radius: 25px;
    font-weight: 600;
}

/* Discount Code Section Styles */
.discount-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #28a745;
}

.discount-section h6 {
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.discount-code-input {
    font-weight: 500;
}

.discount-code-input:focus {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

.discount-badge {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.discount-info {
    color: #28a745;
    font-weight: 600;
    margin-top: 8px;
    display: block;
    font-size: 14px;
}

.discount-amount {
    color: #28a745 !important;
    font-weight: 700;
}

.discount-savings {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    padding: 10px;
    margin-top: 8px;
    color: #155724;
    font-size: 14px;
}

.btn-apply-discount {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-apply-discount:hover {
        background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
        color: white;
    }

.btn-remove-discount {
    color: #dc3545;
    border-color: #dc3545;
    transition: all 0.3s ease;
}

    .btn-remove-discount:hover {
        background: #dc3545;
        color: white;
    }

