@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Mukta:wght@200;300;400;500;600;700;800&display=swap');


@tailwind base;
@tailwind components;
@tailwind utilities;

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Mukta", sans-serif;
}

.bg-primary{
    background-color: #002060;
}

.upload-box {
            border: 2px dashed #ccc;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 20px;
            cursor: pointer;
            transition: background-color 0.2s ease-in-out;
        }
        .upload-box:hover {
            background-color: #f7f7f7;
        }
        .upload-box img {
            max-width: 100px;
            margin-bottom: 10px;
        }
        .upload-box input {
            display: none;
        }
        .upload-preview {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .upload-preview img {
            max-width: 64px;
            margin-top: 10px;
            border-radius: 8px;
        }
        .transparent-remove-btn {
            background-color: transparent;
            color: black;
            border: none;
            cursor: pointer;
            transition: color 0.2s ease-in-out;
        }
        .transparent-remove-btn:hover {
            color: #555;
        }
        .hidden {
            display: none;
        }
        .product-item {
            background-color: #F8FAFC;
            border-radius: 8px;
            padding: 10px;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .product-item img {
            max-width: 50px;
            border-radius: 5px;
            margin-right: 10px;
        }

         
        .active-category {
            background-color: #ffffff;
            color: #002060;
        }
        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            width: 250px;
            height: 100%;
            background: #fff;
            opacity: 0.8; 
            color: white;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            z-index: 1000;
            padding-top: 60px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding-left: 20px;
        }

        .sidebar a {
            color: #002060;
            text-decoration: none;
            font-size: 18px;
        }

        .sidebar.open {
            transform: translateX(0);
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: none;
            z-index: 500;
        }

        .overlay.active {
            display: block;
        }