﻿
/*//--------------------------------------------All Buttons Color--------------------------------//*/
.AllButtonCommonCode {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

    .AllButtonCommonCode svg,
    .pdf svg,
    .excel svg,
    .search svg,
    .cancelIconSearch,
    .downloaddiv1,
    .downloaddiv,
    .cancelIcon,
    .btn_Add,
    .cancelIconTopic,
    .cancelIconUsage,
    .btn_addcancel,
    cancelIcon1 {
        width: 1rem; /* Icon width */
        height: 1rem; /* Icon height */
        fill: LightSeaGreen; /* Icon color */
    }
.pdf button, .excel button, .search-icon, .cancelIcon, .cancelIcon1, .cancelIconSearch {
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    width: 1rem; /* Icon width */
    height: 1rem; /* Icon height */
    color: LightSeaGreen; /* Icon color */
    margin-top: 1px;
}
.icon {
    opacity: 0.5;
}
/*---------------------------------------Table Hover Color--------------------------------------------*/
/* Common hover color for all tables */
.table-hover-color tbody tr:hover {
    background-color: lightblue;
    cursor: pointer;
}
.table-hover-color.table-striped tbody tr.selected-row1 {
    background-color: lightgreen !important;
}
.table-hover-color.table-striped tbody tr:nth-child(odd) {
    background-color: #f9f9f9; /* Set the background color for odd rows (striped) */
}
.highlight {
    background-color: lightgreen;
}
.selected-row1 {
    background-color: lightgreen;
}
.highlighted-row {
    background-color: papayawhip;
}
/* Apply background color to odd rows */
.table tbody tr:nth-of-type(odd) {
    background-color: #f2f2f2; /* Gray color */
}
    /* Change background color of odd rows on hover */
    .table tbody tr:nth-of-type(odd):hover {
        background-color: lightblue; /* Lighter gray or any color you prefer for hover effect */
    }
.table-hover-color tbody tr:hover {
    background-color: lightblue;
    cursor: pointer;
}
.selected-row {
    background-color: #f0f0f0;
}
/*//--------------------------------------Button Code----------------------------//*/
.disabled-row {
    pointer-events: none;
}
.enables {
    pointer-events: auto;
}
.no-arrow::-webkit-inner-spin-button,
.no-arrow::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.no-arrow {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    display: none;
}
.enables {
    pointer-events: auto;
}

.error-container {
    display: inline-block;
    margin-left: 10px;
    vertical-align: top;
}
tr td {
    vertical-align: text-top;
}
.table-hover-color thead th, td {
    font-size: 1rem;
}
.table-hover-color thead tr th,
.table-hover-color tbody tr td {
    padding-top: 2px;
    padding-bottom: 2px;
}
.table-hover-color thead tr th {
    background-color: LightSeaGreen; /* Replace with your desired color */
    color: white; /* Replace with text color that provides good contrast */
    text-align: center;
}
.table-hover-color thead tr th {
    text-align: center;
}
.table-hover-color tbody tr td {
    /* background-color:white;*/
    text-align: center;
    font-size: 12px;
    font-style: normal;
}

.page_Title1 {
    font-weight: bold;
    /* color: #3599ca;*/
    color: LightSeaGreen;
    font-size: 19px;
}
.page_Title {
    font-weight: bold;
    /* color: #3599ca;*/
    color: LightSeaGreen;
    font-size: 15px;
}
.table-hover-color thead {
    background-color: LightSeaGreen;
    position: sticky;
    top: 0;
    z-index: 1;
}
.Search_Box {
    background-color: white !important;
}
.Search_BoxColumn {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    height: 30px;
}
.search-box {
    position: relative;
    width: 270px;
}
.Count_Column {
    color:brown;
    font-size: 10px;
}

.Sorting-icon {
    font-size: 10px;
}

.custom-popup1 {
    width: 400px; /* Set the desired width */
    height: 170px; /* Set the desired height */
    top: -20%;
}
.table-containerwds {
    overflow: auto;
    min-height: 1px; /* Set a minimum height to prevent the container from collapsing when there's no content */
    max-height: 350px;
}
.Pupup-custom-title-font-size {
    font-size: 15px; /* Adjust the font size as needed */
    font-weight: bold;
}

.custom-popup1 .swal2-title {
    font-size: 14px; /* Adjust the size as needed */
}
/*//----------------------Search Button code------------------------------*/
/* inspired form gumroad website */
.CartBtn {
    width: 100px;
    height: 35px;
    border-radius: 12px;
    border: none;
    background-color: dodgerblue;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-duration: .5s;
    overflow: hidden;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.103);
    position: relative;
    margin-right: 3px;
}

.IconContainer {
    position: absolute;
    left: -50px;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
    transition-duration: .5s;
}

.cart {
    border-radius: 1px;
    width: 17px;
    height: 17px;
    color: white;
}

.text {
    height: 100%;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 1;
    transition-duration: .5s;
    font-size: 13px;
    font-weight: 600;
    margin-top: 17px;
}

.CartBtn:hover .IconContainer {
    transform: translateX(58px);
    border-radius: 40px;
    transition-duration: .5s;
}

.CartBtn:hover .text {
    transform: translate(10px,0px);
    transition-duration: .5s;
}

.CartBtn:active {
    transform: scale(0.95);
    transition-duration: .5s;
}
.yellowbtns {
    display: flex;
    justify-content: flex-end;
}

.searchbtnyellow {
    display: flex;
    justify-content: center;
}
.table td {
    border-color: #f5f5f5;
    padding: 0.15rem 0.10rem;
}
.anchortag_link{
    color:blue;
}
    .anchortag_link:hover {
        text-decoration: underline;
        color:blueviolet;
    }