html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo-image {
    width: 660px;
    height: auto;
    margin-top: 10px;
    margin-bottom: 15px;
}


.navbar {
    background: linear-gradient(90deg, #1e3c72, #2a5298) !important;
}

.navbar-brand {
    color: white !important;
    font-weight: 600;
    font-size: 1.3rem;
}

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    border-radius: 10px;
    padding: 8px 14px !important;
    margin-right: 6px;
    transition: all 0.25s ease;
    font-weight: 500;
}

    .nav-link:hover {
        background-color: rgba(255,255,255,0.15);
        color: white !important;
        transform: translateY(-2px);
    }

    .nav-link i {
        margin-right: 6px;
        font-size: 1rem;
    }

.navbar .active {
    background-color: rgba(255,255,255,0.2);
    color: white !important;
}

.navbar-toggler {
    background-color: rgba(255,255,255,0.2);
    border: none;
}

.login-link {
    background-color: #ffb703;
    color: #1e1e1e !important;
    font-weight: 600;
    border-radius: 10px;
    padding: 8px 16px !important;
    transition: all 0.25s ease;
}

    .login-link:hover {
        background-color: #ffd166;
        color: black !important;
        transform: translateY(-2px);
    }

.product-thumb {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.image-drop-zone {
    border: 2px dashed #7aa7ff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    background-color: #f8fbff;
    transition: all 0.25s ease;
}

    .image-drop-zone:hover {
        background-color: #eef5ff;
        border-color: #2a5298;
    }

    .image-drop-zone.dragover {
        background-color: #e8f1ff;
        border-color: #1e3c72;
    }

.product-preview {
    max-width: 100%;
    max-height: 160px;
    margin: 0 auto;
    border-radius: 12px;
    object-fit: contain;
}

.table td,
.table th {
    text-align: left;
    vertical-align: middle;
}

body {
    padding-top: 70px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
}
