/* AnGael Whiskey Cask Sales - Modern Professional Design */

/* Modern Color Palette */
:root {
    --primary-brown: #2C1810;
    --secondary-brown: #4A2C17;
    --accent-gold: #D4AF37;
    --light-gold: #F4E4BC;
    --warm-white: #FAF7F0;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --success-green: #28A745;
    --warning-orange: #FD7E14;
    --danger-red: #DC3545;
    --info-blue: #17A2B8;
    --border-light: #E5E5E5;
    --shadow-light: rgba(0,0,0,0.1);
    --shadow-medium: rgba(0,0,0,0.15);
}

/* Base Styles */
* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--warm-white);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-brown);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Modern Navigation */
.navbar {
    background: var(--warm-white);
    box-shadow: 0 2px 20px var(--shadow-light);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-brown) !important;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.25rem;
    padding: 0.75rem 1.25rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    background-color: var(--light-gold);
    color: var(--primary-brown) !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 100%);
    color: var(--warm-white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23D4AF37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--warm-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light-gold);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Modern Buttons */
.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #B8860B);
    color: var(--primary-brown);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: var(--primary-brown);
}

.btn-secondary {
    background: transparent;
    color: var(--warm-white);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-brown);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-brown);
    border: 2px solid var(--primary-brown);
}

.btn-outline-primary:hover {
    background: var(--primary-brown);
    color: var(--warm-white);
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
    background: var(--warm-white);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.card-header {
    background: var(--light-gold);
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem;
    font-weight: 600;
    color: var(--primary-brown);
}

.card-body {
    padding: 2rem;
}

.card-title {
    color: var(--primary-brown);
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Search Filter Card */
.search-filter-card {
    background: var(--warm-white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
}

.search-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gold);
}

.search-title {
    color: var(--primary-brown);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.search-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}

.search-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 0;
}

.search-input {
    background: var(--warm-white);
    border: 2px solid var(--border-light);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: 48px;
    box-sizing: border-box;
}

.search-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

.search-btn {
    background: linear-gradient(135deg, var(--accent-gold), #B8860B);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: var(--primary-brown);
    transition: all 0.3s ease;
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: var(--primary-brown);
}

/* Ensure all form controls have consistent height */
.search-form .form-control,
.search-form .form-select {
    height: 48px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.search-form .form-control:focus,
.search-form .form-select:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

/* Ensure form groups align properly */
.search-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100%;
}

.search-form .form-group .form-label {
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-brown);
}

.search-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-results-count {
    color: var(--text-light);
    font-size: 0.95rem;
}

.search-results-count strong {
    color: var(--primary-brown);
    font-weight: 600;
}

/* Enhanced Cask Cards */
.cask-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: var(--warm-white);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cask-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.cask-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cask-card:hover .cask-image {
    transform: scale(1.05);
}

.cask-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cask-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.cask-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 0;
    flex-grow: 1;
}

.cask-status {
    margin-left: 1rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-available {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-green);
    border: 1px solid var(--success-green);
}

.status-reserved {
    background: rgba(253, 126, 20, 0.1);
    color: var(--warning-orange);
    border: 1px solid var(--warning-orange);
}

.status-sold {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger-red);
    border: 1px solid var(--danger-red);
}

.cask-details {
    margin-bottom: 1rem;
}

.cask-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.cask-distillery {
    color: var(--accent-gold) !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
}

.cask-type {
    color: var(--text-dark) !important;
    font-weight: 500 !important;
}

.cask-country {
    color: var(--text-light) !important;
}

.cask-specs {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 0.9rem;
    color: var(--primary-brown);
    font-weight: 600;
}

.cask-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cask-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 0.25rem;
}

.price-per-litre {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 500;
}

.cask-categories {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-badge {
    background: var(--light-gold);
    color: var(--primary-brown);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Responsive Design for Search */
@media (max-width: 992px) {
    .search-filter-card {
        padding: 1.5rem;
    }
    
    .search-title {
        font-size: 1.25rem;
    }
    
    .search-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .search-filter-card {
        padding: 1rem;
    }
    
    .search-header {
        margin-bottom: 1.5rem;
    }
    
    .search-title {
        font-size: 1.1rem;
    }
    
    .search-subtitle {
        font-size: 0.85rem;
    }
    
    .search-actions {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .cask-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cask-status {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .cask-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .price-section {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .cask-info {
        padding: 1rem;
    }
    
    .cask-specs {
        padding: 0.75rem;
    }
    
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* Forms */
.form-control {
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--warm-white);
}

.form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

/* Alerts */
.alert {
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-green);
    border-left: 4px solid var(--success-green);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger-red);
    border-left: 4px solid var(--danger-red);
}

.alert-warning {
    background: rgba(253, 126, 20, 0.1);
    color: var(--warning-orange);
    border-left: 4px solid var(--warning-orange);
}

.alert-info {
    background: rgba(23, 162, 184, 0.1);
    color: var(--info-blue);
    border-left: 4px solid var(--info-blue);
}

/* Tables */
.table {
    background: var(--warm-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.table thead th {
    background: var(--light-gold);
    color: var(--primary-brown);
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.table tbody td {
    padding: 1rem;
    border-top: 1px solid var(--border-light);
    vertical-align: middle;
}

.table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

/* Badges */
.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.875rem;
}

.bg-success {
    background: var(--success-green) !important;
}

.bg-danger {
    background: var(--danger-red) !important;
}

.bg-warning {
    background: var(--warning-orange) !important;
}

.bg-info {
    background: var(--info-blue) !important;
}

/* Status indicators */
.status-pending {
    color: var(--warning-orange);
    font-weight: 600;
}

.status-completed {
    color: var(--success-green);
    font-weight: 600;
}

.status-processing {
    color: var(--info-blue);
    font-weight: 600;
}

/* Main content area */
main {
    display: block;
    padding-bottom: 2rem;
    position: relative;
    min-height: 400px;
    margin-bottom: 2rem;
    width: 100%;
}

/* Footer - Override any external CSS */
.footer {
    background: var(--primary-brown) !important;
    color: var(--warm-white) !important;
    padding: 2rem 0 1rem !important;
    margin-top: 0 !important;
    width: 100% !important;
    position: static !important;
    bottom: auto !important;
    z-index: 1;
    clear: both;
    display: block !important;
    white-space: normal !important;
    line-height: normal !important;
}

.footer h5 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer p {
    color: var(--light-gold);
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.footer a {
    color: var(--light-gold);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer a:hover {
    color: var(--accent-gold);
}

.footer ul {
    margin-bottom: 0;
}

.footer li {
    margin-bottom: 0.5rem;
}

/* Ensure footer content is properly sized */
.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer .row {
    margin: 0;
}

.footer .col-md-4 {
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.footer .row {
    margin-bottom: 2rem;
}

.footer .col-md-4 {
    margin-bottom: 1.5rem;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer .col-md-4 {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer p {
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-5 {
    padding: 3rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .navbar-brand {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .cask-info {
        padding: 1rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--border-light);
    border-radius: 50%;
    border-top-color: var(--accent-gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Fade In Animation */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Gold Line Decoration */
.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), #B8860B);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Section Spacing */
.section {
    padding: 4rem 0;
}

.section-alt {
    background: rgba(212, 175, 55, 0.05);
}

/* Container Improvements */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    overflow-x: hidden;
}

/* Prevent text overflow and overlapping */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

/* Ensure proper layout structure */
html, body {
    height: 100%;
}

/* Ensure footer appears after content - Override any absolute positioning */
.footer {
    margin-top: 0 !important;
    position: static !important;
    bottom: auto !important;
    z-index: 1;
    clear: both;
    width: 100%;
    display: block;
    white-space: normal !important;
    line-height: normal !important;
}

/* Override any framework or external CSS that might be setting absolute positioning */
.footer[class*="b-"] {
    position: static !important;
    bottom: auto !important;
    margin-top: 0 !important;
    white-space: normal !important;
    line-height: normal !important;
}

/* Specific override for the problematic CSS selector */
.footer[b-ttr69q1rui] {
    position: static !important;
    bottom: auto !important;
    width: 100% !important;
    white-space: normal !important;
    line-height: normal !important;
    margin-top: 0 !important;
    display: block !important;
}

/* Additional spacing to prevent overlap */
body {
    padding-bottom: 0;
}


/* Specific fixes for admin dashboard and other pages */
.container {
    margin-bottom: 3rem;
}

/* Ensure content is visible above footer */
main .container {
    padding-bottom: 3rem;
    margin-bottom: 2rem;
}

/* Admin dashboard specific fixes */
.admin-dashboard {
    min-height: 600px;
    padding-bottom: 6rem;
    margin-bottom: 3rem;
}

/* Ensure footer has proper spacing and height */
.footer {
    margin-top: 2rem;
    padding: 2rem 0 1rem;
    min-height: auto;
    max-height: none;
}

/* Landing page full screen coverage */
.auth-container {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 100%);
    padding: 4rem 2rem;
    margin: 0;
    position: relative;
}

/* Auth pages full width with proper spacing */
.auth-layout .container-fluid {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
}

.auth-layout .row {
    margin: 0;
    min-height: 100vh;
    align-items: center;
}

.auth-layout .card {
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 12px;
}

.auth-layout .card-header {
    padding: 2rem 2rem 1rem;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border-light);
}

.auth-layout .card-body {
    padding: 1rem 2rem 2rem;
}

/* Ensure auth layout covers full screen */
body.auth-layout {
    height: 100vh;
    overflow: hidden;
}

body.auth-layout main {
    height: 100vh;
    width: 100vw;
    padding: 0;
    margin: 0;
}

/* Ensure proper text wrapping */
p, span, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* FINAL OVERRIDE - Force footer to be static positioned */
footer.footer,
.footer,
.footer[class*="b-"],
.footer[b-ttr69q1rui] {
    position: static !important;
    bottom: auto !important;
    margin-top: 0 !important;
    width: 100% !important;
    display: block !important;
    white-space: normal !important;
    line-height: normal !important;
}

/* Grid Improvements */
.row {
    margin: 0 -0.75rem;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-auto, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
.col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    padding: 0 0.75rem;
}
