
.password-field {
    position: relative;
}

.password-input-container {
    position: relative;
    width: 100%;
}

.password-input-container .input_field {
    padding-right: 45px; /* Space for the eye icon */
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    z-index: 2;
}

.eye-icon {
    font-size: 16px;
    transition: color 0.3s ease;
}

.password-toggle:hover .eye-icon {
    color: #333;
}

/* If you're not using Font Awesome, you can use these SVG icons */
.password-toggle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}




.highlight-amount {
    color: #ff0000 !important;
    font-weight: bold !important;
    font-size: 18px !important;
    background-color: #fff3cd;
    /*padding: 2px 5px;*/
    /*border-radius: 3px;*/
    /*border: 1px solid #ffc107;*/
}

/* Style for amount input when value > 500 */
#amount.highlight-input {
    color: #ff0000 !important;
    font-weight: bold !important;
    font-size: 18px !important;
    border-color: #ff0000 !important;
    background-color: #fff3cd !important;
}



.container{
    width:100%;
}
.skin-blue .main-header .navbar{
    padding-left: 30px;
}
.highlight{
    background-color: red;
}
/*.table-container div{*/
/*    font-size: 25px;*/
/*}*/
.menu-item{
    height: 100%;
    width: 100px;
}
/*.width-30.no-more-than-500 {*/
/*    color: #F44336;*/
/*}*/
.flex{
    display: flex;
}
.full-width{
    width: 100%;
    height: 28px;
}
.width-25{
    width: 25%;
}
.width-60{
    width: 60%;
}
.width-50{
    width: 50%;
}
.width-100{
    width:100%;
}
.width-30{
    /*width: 30%;*/
    width: 31%;
    margin-right: 12px;
        font-weight: 800;
}
.width-40{
    width: 40%;
}
.width-45{
    width: 45%;
}
.width-55{
    width: 55%;
}
.right-container{
    display: flex;
    width: 40%;
    justify-content: right;
    align-items: center;
}
.margin-right-10{
    margin-right: 10px;
}
.margin-top-bottom-10{
    margin-top: 10px;
    margin-bottom: 10px;
}
.total-container{
    width: 15%;
    height:100%;
    text-align: center;
}
.akda-div{
    border: 1px solid black;
    overflow: auto;
    background-color: white;
}
.width-85{
    width: 85%;
}
.red-box{
    width: 70%;
    border:1px solid #000000;
    /*height: 28px;*/
}
.ten-width-div{
    width: 10%;
    padding-right: 10px;
    text-align: center;
}
.margin-bottom-10{
    margin-bottom:10px;
}
.akda-back{
    width: 30%;
    background-color: #007ff1;
    color: white;
    font-weight: bold;
        border-radius: 4px;
    line-height: 27px;
}
.button{
    width: 100px;
}
button#delbtn,button#clrbtn{
    background: #f10000ed;
    padding: 7px 5px;
    border-radius: 5px;
    border: none;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}
button#delbtn{
        margin-left: 7px;
    margin-right: 5px;
}
button#syncbtn{
    background: #37a000;
    padding: 7px 5px;
    border-radius: 5px;
    border: none;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}
.form-control{
    height: 25px;
}
.margin-left-10{
    margin-left: 10px;
}
.margin-left-35{
    margin-left: 35px;
}
.margin-top-35{
    margin-top: 35px;
}
.radio-pad > input{
    margin-right: 5px;
    margin-left: 5px;
}

/* 2023-08-26 */
.container-out{
     background:#fff;
   color:#000000;
}
#akda , #pan {
	color:black;
	border-radius: 10px;
}
#akda > div , #pan > div{
	font-size:18px;
	cursor:pointer;
}
input#number ,input#amount ,input#code{
    border: 1px solid #FF9800;
}















/* new css */
/* Combined single box styles */
.single-box-container {
    height: 300px;
    overflow-y: auto;
    border: 2px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
    background: #fff;
}

.single-box-container div {
    padding: 5px 10px;
    margin: 3px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.single-box-container div:hover {
    background-color: #f0f0f0;
}

.single-box-container .highlight {
    background-color: #ffeb3b !important;
    font-weight: bold;
}

/* Double digit grid styles */
.double-digit-grid {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
}

.grid-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.grid-row {
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.grid-row:last-child {
    border-bottom: none;
}

.grid-cell {
    flex: 1;
    text-align: center;
    padding: 10px 5px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    min-width: 60px;
}

.grid-cell:hover {
    background-color: #e3f2fd;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.grid-cell.active {
    background-color: #1976d2;
    color: white;
    font-weight: bold;
}

.grid-cell.highlight-amount {
    color: #d32f2f;
    font-weight: bold;
    font-size: 16px;
}

.grid-cell.empty {
    background-color: #f5f5f5;
    color: #999;
    cursor: default;
}

.grid-cell.empty:hover {
    background-color: #f5f5f5;
    transform: none;
    box-shadow: none;
}



