.pos-screen {
    background: #F2EDFB;
    min-height: 100vh;
}

.pos-screen.pos-dash {
    background: #6E46A1;
    min-height: 100vh;
}

.pos-guide-info {
    border: 1px solid #C09AF2;
    border-radius: 8px;
    background: #E3DDEC;
}

.guide-details p {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);

}

.pos-tab-card-container {
    border-top: 1px solid orange;
    padding-top: 5px;
    height: 92%;
}

.upper-nav-container {
    height: 8%;
}

.radio-card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    height: 110px;
    padding: 0px 20px;
}

.radio-card input[type="radio"] {
    display: none;
    /* Hide the default radio button */
}

.radio-card input[type="radio"]:checked+label {
    border: 2px solid #6E46A1;
    color: #6E46A1;
    font-weight: bold;
}

.radio-card label {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    border-top-right-radius: 20px;
    border: 2px solid #ddd;
    background-color: white;
    transition: all 0.3s ease;
}

.radio-card input[type="radio"]:checked+label {
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.guide-details span {
    font-size: clamp(0.6rem, 2.5vw, 0.8rem);
    color: #5D5962;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pos-view-button {
    background: #6E46A1;
    border-radius: 8px;
    border: none;
    width: 280px;
    transition: all 0.3 ease;
}
.pos-view-button:disabled {
    background: #8b8b8b;
}
.pos-view-button:disabled:hover {
    background: #8b8b8b;
}

.pos-view-button:hover {
    background: #8965b8;
}

.back-img img {
    width: 100%;
}

.search-container {
    background-color: #FFFFFF;
    padding: 5px 10px;
    height: 30px;

    i {
        font-size: 14px;
        color: #6E46A1;
    }

    input {
        width: 250px;
        border: none;
        outline: none;
        font-size: 14px;
        height: auto;
    }
}

.cust-divider {
    height: 25px;
}

.pos-nav-tabs {
    overflow-x: scroll;
    white-space: nowrap;
    height: max-content;
    overflow-y: hidden;
    margin: 0px 25px;

    ul {
        display: flex;
        list-style: none;
        padding: 0px 30px;
        gap: 10px;

        li {
            position: relative;
            min-width: 100px;
            padding: 0px 10px;
            height: 45px;
            color: #FFFFFF;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 25px 25px 0px 0px;
            font-size: 13px;
            flex-shrink: 0;

            span {
                cursor: pointer;
            }
        }

        li.active {
            background-color: #FAF8FD;
            color: #6E46A1;
            font-weight: 500;
            border-top: 3px solid orange;
            pointer-events: none;
        }

        li.active::before,
        li.active::after {
            content: '';
            bottom: -15px;
            position: absolute;
            background-repeat: no-repeat;
            height: 100%;
            width: 25px;
            background-size: 100%;
        }

        li.active::before {
            left: -23px;
            background-image: url('data:image/svg+xml;utf8,<svg%20width="23"%20height="26"%20viewBox="0%200%2023%2026"%20fill="none"%20xmlns="http://www.w3.org/2000/svg"><path%20d="M23%200L20.7542%208.22574C18.4401%2016.7016%2011.6794%2023.2355%203.12952%2025.2593L0%2026H23V0Z"%20fill="%23FAF8FD"/></svg>');
        }

        li.active::after {
            right: -23px;
            background-image: url('data:image/svg+xml;utf8,<svg%20width="23"%20height="26"%20viewBox="0%200%2023%2026"%20fill="none"%20xmlns="http://www.w3.org/2000/svg"><path%20d="M0%200L2.2458%208.2257C4.5599%2016.7016%2011.3206%2023.2355%2019.8705%2025.2593L23%2026H0V0Z"%20fill="%23FAF8FD"/></svg>');
        }
    }
}

.pos-nav-card {
    background-color: #FAF8FD;
    height: -webkit-fill-available;
}

.pos-card-container {
    border-radius: 20px;
    border: 1px solid #6E46A1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    overflow: hidden;
    height: 100%;
}

.pos-card {
    background-color: #FFFFFF;
    box-shadow: 0px 0px 15px -7px #00000070;
    border-radius: 10px;
}

.pos-card.features {
    overflow-y: scroll;
}

.pos-card.features {
    --sb-track-color: #f3edfb;
    --sb-thumb-color: #F2EDFB;
    --sb-size: 12px;
}

.pos-card.features {
    .feature-names {
        font-size: 14px;
        font-weight: 600;
        color: #66656A;
    }

    .feature-names:hover {
        background-color: #a78bcb0d;
    }

    ul {
        list-style: none;

        li {
            padding: 15px 25px;
            cursor: pointer;
        }
    }
}

.pos-card.features::-webkit-scrollbar {
    width: var(--sb-size);
    display: none;
}

.pos-card.features::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 15px;
}

.pos-card.features::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 15px;
    border: 1px solid #232e33;
}

.feature-collaspable {
    height: auto;
    padding: 7px 0px;
    background-color: #F3F0F5;
    overflow: hidden;
}

.sub-feature {
    position: relative;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sub-feature i::after {
    content: '';
    height: 75%;
    position: absolute;
    top: -13px;
    left: 11px;
    border-right: 1px solid #959499;
}

.sub-feature:hover {
    cursor: pointer;
    background-color: #ECE9EE;
    font-weight: 600;
}

.sub-feature.active {
    background-color: #ECE9EE;
    font-weight: 600;
}

.data-available-title,
.data-not-available-title {
    margin: 10px 0px;
    font-weight: 500;
    color: #42BB4E;
}

.data-not-available-title {
    color: #F03D3D;
}

.useful {
    i {
        color: #42BB4E !important;
    }
}

.not-useful {
    i {
        color: #B9C0B9 !important;
    }
}

.data-available-list,
.data-not-available-list {
    max-height: 500px;
    overflow: auto;
}

.data-available-list::-webkit-scrollbar,
.data-not-available-list::-webkit-scrollbar {
    display: none;
}

.data-available-list-items,
.data-not-available-list-items {
    p {
        color: #707870;
        font-size: 14px;
        font-weight: 400;
    }
}

.rotate {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.pos-all-list {
    position: relative;
    display: inline-block;

    select {
        width: 100%;
        height: 100%;
        background: transparent;
        outline: none;
        border: 1px solid #fff;
        color: #fff;
        display: flex;
        align-items: center;
        padding: 7px;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 700;
        cursor: pointer;
        border-radius: 7px;
    }

    select option {
        color: #6E46A1;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 700;
        cursor: pointer;
    }
}

.data-not-available-list-items {
    cursor: pointer;

    i {
        color: #F03D3D !important;
    }
}

.pos-nav-tabs::-webkit-scrollbar {
    display: none;
}

.scroll-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 10;
    position: absolute;
}

.left-arrow {
    left: 0px;
}

.right-arrow {
    right: 0px;
}

/* For custom modal */
.modal {
    --bs-modal-width: 300px !important;
}

.modal-top-content {
    background: #6E46A1;
}

.modal-main-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;

    .description {
        border: 1px solid grey;
        border-style: dashed;
        border-radius: 7px;
        display: flex;
        flex-direction: column;
        padding: 7px;
        background-color: #FBF9FD;

        span {
            font-size: 13px;
            font-weight: bold;
        }

        p {
            margin: 0px;
            font-size: 12px;
        }
    }
}

.cust-modal-title::before {
    position: absolute;
    content: '';
    width: 55px;
    height: 55px;
    border-radius: 50%;
    top: -25px;
    transform: translate(-30px, 0px);
    background: #fff;
}

.modal-base-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;

    button {
        background-color: #6E46A1;
        border: none;
        color: #fff;
        font-size: 13px;
        padding: 7px 35px;
        border-radius: 7px;
    }
}

.bi-exclamation-triangle-fill {
    color: #F03D3D !important;
}

.fallBack-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 115px;
    align-items: center;
    gap: 10px;

    img {
        width: 250px;
    }

    p {
        color: #898A90;
    }
}

.radio-label {
    display: flex;
    flex-direction: column;

    img {
        height: clamp(75px, 14vw, 80px);
    }
}

.return-pos-list-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: 0px;
    padding: 0px;
    gap: 5px;

    :is(p) {
        font-size: 14px;
    }
}

.pos-loading {
    width: 200px;
    height: 120px;
    background-color: #00000070;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 13px;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;

    :is(p) {
        margin-bottom: 0px;
        color: #fff;
    }
}

.pos-loading.show {
    display: flex;
    opacity: 1;
    transform: scale(1);
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
.excel-dashboard{
    text-align: right;
    margin-bottom:15px;
    :is(a){
        text-decoration: none;
        border: 1px solid #6e46a1;
        margin-left: 8px;
        padding: 6px 8px;
        display: inline-block;
        color: #6e46a1;
        border-radius: 4px;
        transition: 500ms;
        :is(i){}
        :is(span){}
        &:hover{
            background: #6e46a1;
            color: #fff;
            transition: 500ms;
        }
        &.active{
            background: #6e46a1;
            color: #fff;
            transition: 500ms;
            cursor: no-drop;
            pointer-events: none;
        }
    }
}
.view_imgmodalset{}
.view_imgmodalset .switcherItem {
    color: #000 !important;
    font-size: 14px !important;
    padding: 7px 12px;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}
.view_imgmodalset .switcherItemActive {
    padding: 7px 12px;
    white-space: nowrap;
    background-color: #fff;
    font-weight: 500;
    font-size: 14px !important;
    border-left: 1px solid #b3b3b3;
    border-bottom: 1px solid #b3b3b3;
    border-right: 1px solid #b3b3b3;
    text-decoration: none;
}
.download_excell_pdf{
    text-decoration: none;
    border: 1px solid #6e46a1;
    padding: 6px 8px;
    display: inline-block;
    color: #fff;
    border-radius: 4px;
    transition: 500ms;
    background: #6e46a1;
    margin-bottom: 14px;
}
.excel_body{
    border-radius: 20px;
    border: 1px solid #6E46A1;
    padding: 20px;
    :is(iframe){
        
    }
}
.view_imgmodalset table {
    border-collapse: collapse;
    width: 100%;
    max-height: 700px;
    overflow: auto;
    display: block;
  }
  
  .view_imgmodalset th, .view_imgmodalset td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
  }
  
  .view_imgmodalset th {
    background-color: #f4f4f4;
  }