﻿body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Overlay */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 900;
}

    .overlay.show {
        display: block;
    }

/* Sidebar */

.logo {
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.sidebar {
    height: 100%;
    width: 250px;
    position: fixed;
    left: -250px;
    top: 0;
    background-color: #343a40;
    padding-top: 20px;
    transition: 0.4s;
    z-index: 1000;
}

    .sidebar.active {
        left: 0;
    }

    .sidebar a {
        display: block;
        color: white;
        padding: 10px 20px;
        text-decoration: none;
    }

        .sidebar a:hover {
            background-color: #ffc107;
            color: black;
        }
/* Dropdown */
.submenu {
    display: none;
    background-color: #2c3e50;
}

    .submenu.open {
        display: block;
    }

    .submenu a {
        padding-left: 40px;
    }

.submenu1 {
    display: none;
    background-color: #2c3e50;
}

    .submenu1.open {
        display: block;
    }

    .submenu1 a {
        padding-left: 40px;
    }

/* Toggle Button */
.toggle-btn {
    font-size: 22px;
    cursor: pointer;
    background-color: #9a9ace;
    color: white;
    border: none;
    padding: 10px 15px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1100;
}

/* Main Content */
.main-content {
    transition: margin-left 0.4s;
}

.main-content.shift {
    margin-left: 250px;
}
/* Responsive */
@media (max-width: 768px) {
    .main-content.shift {
        margin-left: 0;
    }
}

.glow-box {
    border: 2px solid #ff7f50;
    border-radius: 20px;
    padding: 20px;
    transition: 0.4s ease;
    cursor: pointer;
}

    .glow-box:hover {
        box-shadow: 0 0 20px #ff7f50;
        transform: scale(1.05);
    }

.custom-caption {
    left: 35%; /* move block toward right */
    right: 5%;
    bottom: 20%;
    text-align: left;
    background: rgba(0,0,0,0.6);
    padding: 20px;
    border-radius: 10px;
}

.shop-title {
    font-size: 32px; /* Increase size */
    font-weight: 800; /* Extra bold */
    color: red;
    background-color: lightyellow;
    padding: 8px 20px;
    border-radius: 30px;
    letter-spacing: 1px; /* Better spacing */
    transition: 0.3s ease;
}

    .shop-title:hover {
        background-color: gold;
        color: darkred;
        text-decoration: none;
    }
.bootstrap-select .dropdown-toggle {
    height: 38px;
}
.v-line {
    border-right: 2px solid #dcdcdc;
    padding-right: 20px;
}

    .v-line:last-child {
        border-right: none;
    }

.header-box {
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    color: white;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.card {
    border-radius: 15px;
    border: none;
}

.card-body {
    background: #f8fafc;
}

.form-control, .form-select {
    border-radius: 10px;
    padding: 8px;
    border: 1px solid #dcdcdc;
    transition: 0.3s;
}

    .form-control:focus, .form-select:focus {
        border-color: #6c63ff;
        box-shadow: 0 0 8px rgba(108, 99, 255, 0.3);
    }

.form-label {
    font-weight: 600;
    margin-bottom: 4px;
}

.section-title {
    font-size: 14px;
    font-weight: 600;
    color: #6c63ff;
    margin-top: 10px;
}
