@import 'tailwindcss';
@import './kartureview.css';

@layer base {
    ::-webkit-scrollbar {
      display: none;
    }
    :root {
        --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
            'Segoe UI Symbol', 'Noto Color Emoji';
    }
    body {
        font-family: var(--font-sans);
        background: linear-gradient(135deg, #e8f3ff 0%, #ffffff 100%);
        color: #333;
    }
    .carousel-control-prev {
        left : 0 !important;
        visibility: visible !important;
        opacity: 0 !important;
        transition: opacity 0.5s ease-in-out !important;
        background-color: rgba(255, 255, 255, 0.7) !important;
        border: none !important;
    }
    .carousel-control-next {
        right : 0 !important;
        visibility: visible !important;
        opacity: 0 !important;
        transition: opacity 0.5s ease-in-out !important;
        background-color: rgba(255, 255, 255, 0.7) !important;
        border: none !important;
    }

    .carousel-wrapper:hover .carousel-control-prev,
    .carousel-wrapper:hover .carousel-control-next {
        opacity: 1 !important;
        background-color: rgba(255, 255, 255, 0.95) !important;
    }

    .product-carousel-wrapper:hover .carousel-control-prev,
    .product-carousel-wrapper:hover .carousel-control-next {
        opacity: 1 !important;
        background-color: rgba(255, 255, 255, 0.95) !important;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        background-color: rgba(61, 143, 239, 0.9) !important;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px !important;
        height: 20px !important;
    }

    .carousel {
        overflow: hidden;
    }
    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", Arial, sans-serif;
        }

        .app {
            display: flex;
            min-height: 100vh;
        }

        .sidebar {
            background: #ffffff;
            border-right: 1px solid #eee;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 24px 20px;
        }

        .logo {
            margin-bottom: 30px;
            text-align: center;
        }

        .logo h2 {
            color: #3D8FEF;
            font-size: 24px;
            font-weight: 700;
        }

        .menu {
            list-style: none;
        }

        .menu li a {
            display: block;
            padding: 12px 14px;
            border-radius: 10px;
            margin-bottom: 10px;
            cursor: pointer;
            font-size: 14px;
            color: #555;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .menu li a.active,
        .menu li a:hover {
            background: #eef4ff;
            color: #3D8FEF;
        }

        .profile {
            display: flex;
            align-items: center;
            gap: 10px;
            padding-top: 16px;
            border-top: 1px solid #eee;
            font-size: 14px;
        }

        .avatar {
            width: 36px;
            height: 36px;
            background: #3D8FEF;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .logout-link {
            margin-left: auto;
            color: #ff3b3b;
            text-decoration: none;
            font-size: 13px;
            cursor: pointer;
            background: none;
            border: none;
        }

        .logout-link:hover {
            text-decoration: underline;
        }

        .main {
            flex: 1;
            padding: 30px;
        }

        .topbar {
            margin-bottom: 26px;
        }

        .breadcrumb {
            color: #777;
            font-size: 14px;
        }

        .content {
            background: #fff;
            padding: 24px;
            border-radius: 18px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.06);
        }

        .btn {
            padding: 10px 20px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-size: 14px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.2s;
        }

        .btn-primary {
            background: #3D8FEF;
            color: white;
        }

        .btn-primary:hover {
            background: #2563eb;
        }

        .btn-danger {
            background: #ff3b3b;
            color: white;
        }

        .btn-danger:hover {
            background: #e02f2f;
        }

        .btn-success {
            background: #28a745;
            color: white;
        }

        .btn-success:hover {
            background: #218838;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        table th,
        table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        table th {
            background: #f8f9fa;
            font-weight: 600;
            color: #333;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #3D8FEF;
        }

        .alert {
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .alert-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .alert-danger {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
    
}

