/* Responsive Design */
@media (max-width: 767px) {
    .main-header .navbar-custom-menu {
        float: none !important;
        display: block !important;
    }
    .main-header .navbar-custom-menu .dropdown-menu {
        left: auto !important;
    }
    .main-header .navbar {
        height: auto;
    }
    .skin-blue-light .main-header .navbar .dropdown-menu li a {
        color: #777;
    }
}

/* General Utilities */
.bg-danger {
    background-color: #f2dede !important;
}
.bg-light-gray {
    background-color: #f8f8f8 !important;
}
.bg-info {
    background-color: #00c0ef !important;
    color: #fff !important;
}
.bg-info a:hover {
    background-color: #337ab7 !important;
}
.bg-transparent {
    background-color: transparent !important;
}

/* Buttons */
.btn-big {
    padding: 12px 40px;
    font-size: 18px;
    line-height: 1.5;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-big:hover {
    transform: translateY(-2px);
    background-color: #0056b3;
}

/* Layout Utilities */
.of-visible {
    overflow: visible !important;
}
.f-right {
    float: right;
}
.f-left {
    float: left;
}
.mt-0, .mb-0, .pt-0, .pb-0 {
    margin: 0 !important;
    padding: 0 !important;
}
.mt-5, .mb-5, .mt-10, .mb-10, .mt-15, .mb-12 {
    margin-top: 5px !important;
    margin-bottom: 10px !important;
}

/* Tables */
.table-pdf {
    border-collapse: collapse;
    width: 100%;
    background-color: #fff;
}
.table-pdf thead tr {
    background-color: #357ca5 !important;
    color: #fff !important;
}
.table-pdf .odd {
    background-color: #f0f8ff;
}
.table-no-border td, .table-no-border th {
    border: none !important;
}

/* Headings and Text */
.blue-heading {
    background-color: #357ca5;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}
.text-white {
    color: #fff !important;
}
.text-bold {
    font-weight: bold;
}
.text-muted {
    color: #6c757d !important;
}

/* Product Cards */
.product-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
    transition: all 0.3s ease;
}
.product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.product-box img {
    height: 50px;
    margin-bottom: 10px;
}
.product-box .text {
    font-size: 14px;
    color: #333;
}

/* Forms */
.input-inline {
    display: flex;
    gap: 10px;
}
.input-inline input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Miscellaneous */
.cursor-pointer {
    cursor: pointer !important;
}
.label-round {
    border-radius: 50%;
    font-size: 10px;
    padding: 5px;
}
.modal-xl {
    width: 90%;
    margin: auto;
}
.icon-link {
    display: flex;
    align-items: center;
    gap: 5px;
}
.icon-link a {
    color: #007bff;
    text-decoration: none;
}
.icon-link a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Print Styles */
@media print {
    .print_section {
        display: inline !important;
    }
    ::-webkit-scrollbar {
        display: none !important;
    }
}
