body{
    font-size: 12px;
}

.table_image{
    width: 100px;
    height: 100px;
}

.sitesetting_image{
    width: 350px;
    height: 200px;
    object-fit: contain;
}

.badge_custom{
    font-size: 12px;
}

.text-mode-nowrap{
    text-wrap-mode: nowrap;
}

.row_add-item-width{
    min-width: 250px;
}

.row_min120{
    min-width: 95px;
}

.row_min80{
    min-width: 95px;
}

.font-nowrap tr, td{
    text-wrap-mode: nowrap;
}

.max_width_input{
    max-width: 60px;
}

.max_width_70_input{
    max-width: 70px;
}

.row_min115{
    min-width: 115px;
}

.custom_width_order{
    width: 77px;
}

.padding-0{
    padding: 8px !important;
}


.cursor-pointer:hover{
    cursor: pointer;
}


custom_ome_card-wrapper {
    display: inline-block;
    margin-right: 12px;
    margin-bottom: 12px;
}

/* Main card button */
.custom_ome_card {
    width: 180px;
    height: 150px;
    background: #dc3545; /* Matching btn-danger (Bootstrap red) */
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    cursor: pointer;
    box-shadow: 0px 6px 15px rgba(220, 53, 69, 0.4);
    transition: all 0.25s ease-in-out;
    font-weight: 600;
}

/* Hover Effect */
.custom_ome_card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0px 10px 25px rgba(220, 53, 69, 0.55);
}

/* Icon Style */
.custom_ome_card i {
    font-size: 48px;   /* Bigger icon */
}

/* Text below icon */
.custom_ome_card span {
    font-size: 18px;
}



@media only screen and (max-width: 576px){
    .min_width_300{
        min-width: 100%;
    }
    .table_image{
        width: 50px;
        height: 50px;
    }
    .sitesetting_image{
        width: 100%;
        height: 100px;
    }
    .custom_width_item-name{
        min-width: 200px;
    }
    .row_add-item-width{
        min-width: 277px;
    }
    .min_width_100{
        min-width: 70px;
    }
    .table_res_height{
        max-height: 400px;
        overflow-y: auto;
    }
    .table_res_height table thead th {
        position: sticky;
        top: -1px;
        z-index: 10;
        background: #fff; 
    }
}


@media only screen and (min-width:768px) and (max-width:998px){
    .custom_width_item-name{
        min-width: 200px;
    }
    .table_res_height{
        max-height: 500px;
        overflow-y: auto;
    }
}

@media only screen and (min-width:1100px) and (max-width: 1400px){
    .table_res_height{
        max-height: 480px;
        overflow-y: auto;
    }

    .table_res_height table thead th {
        position: sticky;
        top: -1px;
        z-index: 10;
        background: #fff; 
    }

}


@media only screen and (min-width: 1300px){
    .table_res_height{
        max-height: 600px;
        overflow-y: auto;
    }

    .table_res_height table thead th {
        position: sticky;
        top: -1px;
        z-index: 10;
        background: #fff; 
    }
}
.login-wrapper {
    height: 100dvh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('../images/login_banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.login-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.login-container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card-wrapper {
    width: 100%;
    max-width: 450px;
}

.login-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.login-card-header {
    padding: 2rem;
    text-align: center;
    border: none;
    background-clip: padding-box;
}

.login-card-header img {
    max-width: 100%;
    height: auto;
}

.login-card-body {
    padding: 2.5rem 2rem;
}

.login-form-label {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.login-form-control {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.login-form-control:focus {
    border-color: #faa954;
    box-shadow: 0 0 0 0.2rem rgba(250, 169, 84, 0.25);
}

.login-btn {
    width: 100%;
    padding: 0.875rem;
    border-radius: 10px;
    font-weight: 600;
    background: linear-gradient(135deg, #faa954 0%, #ff8c42 100%);
    box-shadow: none !important;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
}

.login-error-alert {
    background: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    color: #dc3545;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 576px) {
    .login-card-body {
        padding: 2rem 1.5rem;
    }

    /* .login-wrapper {
        min-height: auto;
    } */
    .login-container{
        height: 100dvh;
    }
    
    .login-card-header {
        padding: 1.5rem;
    }
    
    .login-card-header img {
        height: auto !important;
        width: 150px !important;
    }
}

@media (max-width: 400px) {
    .login-container {
        padding: 15px;
    }
    
    .login-card-body {
        padding: 1.5rem 1rem;
    }
}


/* vendor css */

.page-title-box .page-title{
    line-height: 45px;
    font-size: 20px;
}


#vendor_table  td,
#vendor_table th {
  white-space: nowrap !important;
}

#receiveTable  td,
#receiveTable th {
  white-space: nowrap !important;
  vertical-align: middle;
}

.table-text-nowrap  td,
.table-text-nowrap th {
    white-space: nowrap !important;
}

.form-control{
    line-height: 1.1 !important;
    padding: 10px !important;
}

.nav-user .account-user-avatar{
    font-size: 26px;
}

.form-check-label{
    font-size: 12px !important;
}

.form-label{
    font-size: 12px !important;
}

.table_text_centered tr th, td{
    font-size: 12px !important;
}

.card-body{
    padding: 5px !important;
}

strong{
    font-size: 12px;
}

@media (min-width:768px){
    .page-title-box .page-title{
        line-height: 55px;
        font-size: 24px;
    }
    .form-check-label{
        font-size: 0.9rem !important;
    }
    .form-label{
        font-size: 0.9rem !important;
    }
    .table_text_centered tr th, td{
        font-size: 16px !important;
    }
    .card-body{
        padding: 10px !important;
    }
    strong{
        font-size: 15px;
    }
    body{
        font-size: 14px;
    }
}


@media (min-width:992px){
    body{
        font-size: 15px;
    }
}
/* end */