

  :root {
    /* Theme Colors */
    --theme-blue: #044f81;
    --theme-blue-light: #37a8f4;
    --theme-blue-dark: #0d2e48;

     --theme-blue-dark: #082f4d;

    /* Design Tokens */
    --primary: #044f81;
    --primary-light: #0a6fb8;
    --bg-soft: #f5f8fc;
    --bg-white: #ffffff;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --radius-xl: 22px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --shadow-soft: 0 10px 30px rgba(0,0,0,.08);
    --shadow-hover: 0 16px 40px rgba(0,0,0,.14);
}

/* ================= BASE ================= */
body {
    background: var(--bg-soft);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}


    .blue-theme {
        width: 50px;
        height: 50px;
        background: linear-gradient(
            135deg,
            var(--theme-blue),
            var(--theme-blue-light)
        );
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 0 8px 20px rgba(29, 29, 29, 0.35);
        transition: all 0.3s ease;
        border: none;
    }
    .btn-theme{
         background: linear-gradient(
            135deg,
            var(--theme-blue),
            var(--theme-blue-light)
        );

        color: #fff;
    }

    .btn-theme:hover{
        color: #fff;
    }

    .blue-theme:hover {
        background: linear-gradient(
            135deg,
            var(--theme-blue-dark),
            var(--theme-blue)
        );
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(35, 35, 35, 0.45);

    }

    .text-theme {
        color: var(--theme-blue) !important;
    }

    .nav-header,
    .header {
        background: #ffffff;
        /* background: linear-gradient(
            135deg,
            #ffffff,
            rgba(1, 59, 98, 0.05)
        ); */
    }


   /* ===========================
   TABLE (OPTIONAL)
=========================== */

.table thead th {
    background: var(--theme-blue);
    color: #fff;
    border: none;
}

.table tbody tr:hover {
    background-color: rgba(4, 79, 129, 0.05);
}

/* ===========================
   BADGES & STATUS
=========================== */

.badge-theme {
    background: var(--theme-blue);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
}

/* ===========================
   CARD HOVER EFFECT
=========================== */

.theme-card:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

.event-inputs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.event-inputs label {
    cursor: pointer;
}

.radio-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-tile {
    width: 100px;
    height: 20px;
    border-radius: 10px;
    border: 2px solid #e1e6de;
    background: #fff;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
    position: relative;
}

.radio-tile:hover {
    border-color: var(--theme-blue);
}

.radio-icon {
    font-size: 20px;
    color: #6c757d;
    margin-bottom: 6px;
}

.radio-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.radio-input:checked + .radio-tile {
    border-color: var(--theme-blue);
    box-shadow: 0 6px 14px rgba(53, 109, 220, 0.25);
}

.radio-input:checked + .radio-tile .radio-icon,
.radio-input:checked + .radio-tile .radio-label {
    color: var(--theme-blue);
}

.event-label{
    width: 100px;
}



    /* ===========================
   GLOBAL THEME ELEMENTS
=========================== */

.theme-card {
    background: #fff;
    border-radius: 16px;
    border: none;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.theme-title {
    color: var(--theme-blue);
    font-weight: 700;
}

/* ===========================
   FORM CONTROLS
=========================== */

.form-control,
.form-select {
    border-radius: 10px;
    border: 1px solid #dbe4ec;
    padding: 10px 14px;
    transition: all 0.25s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--theme-blue);
    box-shadow: 0 0 0 0.2rem rgba(4, 79, 129, 0.15);
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

/* ===========================
   RADIO & CHECKBOX
=========================== */

.form-check-input:checked {
    background-color: var(--theme-blue);
    border-color: var(--theme-blue);
}

.form-check-label {
    font-weight: 500;
}


/* ================= TOP ACTION BAR ================= */
.action-bar {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    justify-content: center;
}

.action-btn {
    padding: 14px 36px;
    border-radius: 999px;
    background: var(--bg-white);
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: all .25s ease;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.action-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
}

/* ================= CHANNEL BUTTONS ================= */
.action-btn1 {
    padding: 12px 28px;
    border-radius: 999px;
    background: var(--bg-white);
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: all .25s ease;
}

.action-btn1:hover {
    background: #eef4fa;
}

.action-btn1.active {
    background: var(--primary);
    color: #fff;
}

/* ================= CONTENT BOX ================= */
.action-content {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2px;
    box-shadow: var(--shadow-soft);
}

.content-box {
    display: none;
}

.content-box.active {
    display: block;
}

/* ================= CHANNEL CONTENT ================= */
.channel-content {
    display: none;
    padding: 20px 10px;
}

.channel-content.active {
    display: block;
}

/* ================= ITEM GRID ================= */
.item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

/* ================= ITEM TILE ================= */
.item-tile {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: var(--radius-md);
    padding: 18px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: all .25s ease;
}

.item-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
}

/* ================= MODAL ================= */
.modal-dialog {
    max-width: 720px;
}

.modal-content {
    border-radius: var(--radius-xl);
    border: none;
    box-shadow: var(--shadow-hover);
}

.modal-header {
    border-bottom: none;
    padding: 20px 24px;
}

.modal-title {
    font-weight: 700;
}

.modal-body {
    padding: 20px;
    background: var(--bg-soft);
}

/* ================= MODAL ITEM ================= */
.modal-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
    margin-bottom: 14px;
    align-items: center;
    transition: transform .2s ease;
}

.modal-item:hover {
    transform: scale(1.02);
}

.modal-item img {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
}

.modal-item-details {
    flex: 1;
}

.modal-item-title {
    font-weight: 600;
    color: var(--text-dark);
}

.modal-item-price {
    font-size: 14px;
    color: var(--text-muted);
}

/* ================= ADD BUTTON ================= */
.modal-item button {
    border-radius: 999px;
    padding: 6px 18px;
    font-weight: 600;
}

/* ================= INFO GRID ================= */
.row.g-3 > div {
    background: var(--bg-white);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
}

/* quotation-item div*/
.quotation-item{
    margin: 20px 10px;
    background-color: #044f81;
    border-radius: 10px;
}

 .compact-table th,
.compact-table td {
    padding: 3px 6px !important;
    font-size: 12px;
    line-height: 1.2;
    vertical-align: middle;
}

.compact-table small {
    font-size: 11px;
}

.compact-table strong {
    font-weight: 600;
}

.compact-table tr {
    height: 28px;
}
/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
    .action-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .action-bar::-webkit-scrollbar {
        display: none;
    }

    .action-btn,
    .action-btn1 {
        white-space: nowrap;
        padding: 12px 22px;
        font-size: 14px;
    }

    .action-content {
        padding: 2px;
    }

    .item-grid {
        grid-template-columns: 1fr;
    }

    .modal-dialog {
        margin: 0;
        height: 100%;
    }

    .modal-content {
        height: 100%;
        border-radius: 22px 22px 0 0;
    }

    .modal-body {
        padding: 14px;
    }
}

/* ================= MOBILE BOTTOM SHEET EFFECT ================= */
@media (max-width: 768px) {
    .modal.fade .modal-dialog {
        transform: translateY(100%);
        transition: transform .3s ease-out;
    }

    .modal.show .modal-dialog {
        transform: translateY(0);
    }
}
