﻿


body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial;
    background: white;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #D2E4E4;
    background: linear-gradient(180deg, rgba(210, 228, 228, 1) 0%, rgba(222, 229, 227, 1) 57%, rgba(252, 246, 228, 1) 100%);
    height: 100vh;
    background-attachment: fixed !important;
}

/*@media (min-width: 1024px) {
    body {
        max-width: 375px;
        margin: 0 auto;
    }
}*/



.mb-5s {
    margin-bottom: 5px;
}

.text-blue {
    color:#0970b4;
}
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: white;
    color: #8c3b30;
    display: flex;
    align-items: center;
    padding-left: 20px;
    z-index: 1000;
    padding-top: 38px;
    font-weight: bold;
    box-shadow: var(--bs-box-shadow-sm) !important;
}


.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    background: #f9f9f9;
    border-top: 1px solid #ccc;
    padding: 10px 0;
    z-index: 10;
    background: linear-gradient(90deg, rgba(193, 185, 166, 0.5) 0%, rgba(196, 190, 170, 0.5) 57%, rgba(217, 206, 178, 0.5) 100%);
    backdrop-filter: blur(5px);
    background: #ffffffa8;
    user-select: none;
}

    .bottom-nav div {
        font-size: 14px;
        color: #7b7b7b;
        text-align: center;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .bottom-nav .active {
        color: #b71936;
        font-weight: bold;
    }

.ivg-tab-content {
    display: none;
    padding: 12px 16px 70px;
    animation: fadeSlide 0.4s ease;
}

    .ivg-tab-content.active {
        display: block;
    }

.bottom-nav .fa {
    font-size: 18px;
    /*display: block;*/
    /*margin-bottom: 4px;*/
}

.badge {
    position: absolute;
    top: 0;
    right: 10px;
    background: red;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 10px;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* san-pham List */
.recent-item {
    display: flex;
    align-items: center;
    padding: 14px 10px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

    .recent-item:hover {
        background: #f9f9f9;
    }

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #aaa;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    color: white;
    font-weight: bold;
}

.info {
    flex: 1;
}

.name {
    font-size: 16px;
    font-weight: bold;
}

.note {
    font-size: 12px;
    color: gray;
}

.time {
    font-size: 12px;
    color: gray;
}

/* Job Cards */
.job-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .job-card:hover {
        transform: scale(1.01);
        box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    }

.job-title {
    font-size: 16px;
    font-weight: bold;
}

.job-tags {
    font-size: 13px;
    margin: 6px 0;
    color: #444;
}

.job-stats {
    font-size: 13px;
    color: gray;
}

.container {
    padding: 10px;
    /* max-width: 700px; */
    /* margin: auto; */
}

h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.room {
    color: #888;
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.tvrposition {
    display: inline-block;
    position: absolute;
    right: 3px;
    top: 3px;
    background-color: #8c3b30;
    color: white;
    padding: 3px 10px;
    font-weight: bold;
    font-size: 13px;
    border-radius: 0 3px 3px 0;
}

    .tvrposition::before {
        content: "";
        position: absolute;
        left: -10px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: 13px solid transparent;
        border-bottom: 13px solid transparent;
        border-right: 11px solid #8c3b30;
    }

.ivg-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px 5px;
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.flex-column {
    font-size:13px;
}

.img30 {
    width: 50px;
}

.icon {
    width: 25px;
    height: 40px;
    margin: 0 auto 15px;
    border-radius: 8px;
}



h2 {
    font-size: 12px;
    margin: 0 0 5px;
}

p {
    font-size: 14px;
    color: #666;
}

.form-container {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    /* box-shadow: 0 10px 20px rgba(0,0,0,0.08); */
    width: 100%;
    max-width: 400px;
}

h2 {
    text-align: center;
    /* margin-bottom: 25px; */
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 6px;
    color: #555;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 10px 0px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s;
    font-size:14px;
}

    input:focus, textarea:focus {
        border-color: #3db2ff;
        outline: none;
        box-shadow: 0 0 0 3px rgba(61, 178, 255, 0.2);
    }

.save-btn {
    width: 100%;
    padding: 12px;
    background: #3db2ff;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

    .save-btn:active {
        transform: scale(0.98);
    }



.icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: inline-block;
}

.blue {
    color: #3db2ff;
}

.yellow {
    color: #e88525;
}

.green {
    color: #32e0c4;
}

.blue-dark {
    color: #3a86ff;
}

.light-blue {
    color: #a2d2ff;
}

.red {
    color: #ff6b6b;
}


.logo {
    text-align: center;
}

.warranty-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 12px;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    /*background: linear-gradient(238deg, #f3f3f3 0%, #eec86e 50%, #e6ba4d 100%);*/
    background: #eec86e;
    transition: all 0.3s ease;
    margin: 20px 0px;
}



/*.fixtopright {
    font-size: 15pt;*/
    /*border: 1px solid #9e322b;*/
    /*padding: 5px;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    position: fixed;
    top: 9px;
    right: 15px;
}*/
.fixtopright {
    font-size: 15px;
    border: 1px solid #9e322b;
    padding: 3px 7px 3px 7px;
    /* width: 30px; */
    /* height: 30px; */
    border-radius: 5px;
    position: fixed;
    top: 9px;
    right: 15px;
    /* font-weight: normal; */
}
.tLFlex {
    font-weight: 500;
    width: 45%; 
    margin-right: 0px;
}


#historyTab button {
    font-size: 13px;
    padding: 5px 10px 5px 10px;
}
.voucher-message {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(135deg, #fefcea, #f1da36);
    border: 2px dashed #e0a800;
    border-radius: 12px;
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.voucher-icon img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.voucher-content {
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
}

    .voucher-content b {
        color: #d35400;
        font-weight: 600;
    }
.fwb {
    font-weight:500;
}

.warranty-button .text {
    color: #9e322b;
    font-weight: bold;
    font-size: 17px;
    line-height: 1.2;
}

    .warranty-button .icon i {
        font-size: 60px;
        color: #b4002b;
    }

.bg-search {
    background: white;
}

.red {
    color: #9e322b;
}


.hotline-text {
    font-weight: 500;
}

.hotline-number {
    font-weight: bold;
    font-size: 25px;
}

    .hotline-number a {
        color: unset;
        text-decoration-line: unset;
    }

.hotline {
    text-align: center;
    /* margin-top: 30px; */
    color: #808080;
    position: absolute;
    bottom: 15px;
    width: 100%;
}


.taleft {
    text-align:left;
}

.tct {
    text-align: center
}
.mgt70 {
    margin-top:55px;
}
.welcome {
    color: #808080;
    margin-top: 20px;
}
.title-guide {
    color: #070707;
    display: block;
    font-size:15px;
    width: 100%;
    margin-bottom: 7px;
}
.title-guide b{
    color: #287aeb;
  
}

.cssIcon {
    font-size:13px;
    width:15px;
}

.welcome h3 {
    margin-bottom: unset;
}


.ivg-container {
    /* width: 100%; */
    /*max-width: 800px;*/
    /* margin: 0 auto; */
}

.full-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ivg-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.half-panel {
    flex: 1;
}


.job-card {
    border-left: 6px solid #4CAF50;
    background: #ffffffb6;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 16px;
    font-family: 'Segoe UI', sans-serif;
    width: 85%;
    line-height: 1.5;
    margin: 10px;
}

.job-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
}

.job-tags span {
    display: inline-block;
    font-size: 14px;
    color: #555;
    margin-right: 10px;
}

.job-footer {
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.btn-red:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 10px #8c3b3099 !important;
    background: #8c3b30;
}

.btn-red {
    color: #fff !important;
    background: #8c3b30;
}


.card {
    margin-top: 5px;
    background: white !important;
}

.bg-blur {
    background: white !important;
}


.btnBottomFixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    border-radius: 0;
    display: inline-block;
}

.circle-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 50px auto 30px auto;
}

.circle {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-1 {
    width: 150px;
    height: 150px;
    background-color: rgba(0, 200, 100, 0.1);
}

.circle-2 {
    width: 100px;
    height: 100px;
    background-color: rgba(0, 200, 100, 0.2);
}

.circle-3 {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 200, 100, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}
#historyTab {
    margin-bottom: 0 !important;
    padding-bottom: 0;
    border-radius: 5px;
    background: white;
    margin-top: 5px;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background: #8c3b30;
    color:white;
}
.nav-link {
    color:gray;
}

.w55 button{
    margin-top:15px;
    width:48%;
}


.w55 i {
 
}

#call-widget {
    background-color: white;
    color: #9e322b;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgb(146 138 138 / 20%);
    z-index: 9999999;
    visibility: visible;
    bottom: 55px;
    right: 120px;
    position: fixed;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    height: 35px;
}



.form-check-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 16px;
    touch-action: manipulation;
}

    .form-check-mobile input[type="checkbox"] {
        width: 20px;
        height: 20px;
        accent-color: #8c3b30;
    }

.form-check-mobile label {
    margin: 0;
    user-select: none;
    cursor: pointer;
}
