@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

*, body {
    font-family: 'Inter', sans-serif;
}
/* Base */
.btn-group {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.mr-1 {
    margin-right: 5px;
}
.color-red {
    color: red;
}
.font-15 {
    font-size: 16px;
}
/* Preview Image */
.preview-image {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.preview-image img {
    max-width: 100%;
    max-height: 100%;
}
.row-disabled {
    background-color: #D0D3D4;
}
.alert.alert-light {
    background-color: #85C1E9;
}
.main-header .logo .logo-lg {
    font-size: 14px;
    font-weight: bold;
}
.seller-img {
    width: 100px;
    height: 100px;
    border: 1px solid #ccc;
    overflow: hidden;
}
.seller-img img {
    width: 100%;
    object-fit: cover;
}
.banner-preview {
    width: 350px;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    overflow: hidden;
}
.banner-preview img {
    width: 100%;
}
/* Login */
.login-page {
    background-image: url('../img/bg-login.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 85vh;
}
@media (min-width: 768px) {
    .sidebar-mini.sidebar-collapse .main-header .logo>.logo-mini {
        font-size: 15px;
    }
}