.loginpage {
    margin: 55px 150px;
}

.login img {
    width: 150px;
}

.loginimage img {
    width: 500px;
}

.inputs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.inputs input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    border: 2px solid lightgray;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
}

.inputs input:focus {
    border-color: #4a90e2;
}

.input {
    display: flex;
    gap: 3px;
}

.input input {
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 17px;
    gap: 10px;
    background: #ECEDF4;
    border: none;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.input input:focus {
    border-color: #4a90e2;
}

.mycard {
    padding: 20px;
    width: 170px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px #6b686833;
}

.wallet1 {
    color: black;
    padding: 0 20px;
    align-items: center;
    border-bottom: 2px solid #F23534;
}

.wallet2 {
    align-items: center;
    color: #646E78;
    padding: 0 20px;
}

.wallet1:hover {
    color: black;
    align-items: center;
    padding: 0 20px;
    border-bottom: 2px solid #F23534;
}

.wallet2:hover {
    align-items: center;
    color: #646E78;
}

.add {
    background-color: black;
    color: white;
    float: right;
}

.add:hover {
    background-color: black;
    color: white;
    float: right;
}

.success {
    background-color: #E5FFF2;
    color: #16C37A;
    padding: 8px 10px;
    border-radius: 4px;
    width: auto;
}

.success h6 {
    color: #16C37A;
}

.danger h6 {
    color: #E91C1C;
}

.yellow h6 {
    color: #C3BC16;
}

.danger {
    background-color: #FFE9E9;
    color: #E91C1C;
    padding: 8px 10px;
    border-radius: 4px;
}

.edit {
    background-color: #DDDDDD;
    color: #ABA4A4;
    padding: 8px 10px;
    border-radius: 4px;
}

.yellow {
    background-color: #FAFFE5;
    color: #C3BC16;
    padding: 8px 10px;
    border-radius: 4px;
}

.info {
    background-color: #EAF9FF;
    color: #0043C5;
    padding: 8px 10px;
    border-radius: 4px;
}

.table {
    font-size: 11px;
}

.table thead tr th {
    font-size: 11px;
}

.recharge {
    background: linear-gradient(274.96deg, #F23534 6.52%, #F28434 96.47%);
    color: white;
    display: flex;
    align-items: center;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.title {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
    color: white;
    line-height: 20px;
}

.card1 {
    background: url("assets/img/scheme.png") center center no-repeat;
    width: 250px;
    height: 150px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
}

.heading {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
    line-height: 20px;
}

.cards {
    width: 270px;
    display: flex;
    text-wrap: nowrap;
    flex-direction: column;
    justify-content: space-between;
}

.dash {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.dash1 {
    background-color: white;
    padding: 15px;
    border-radius: 4px;
}

.dash2 {
    background-color: #E5FFF2;
    color: #16C37A;
    padding: 15px;
    border-radius: 4px;
}

.dash2 h6 {
    color: #16C37A;
}

.dash3 {
    background-color: #FAFFE5;
    color: #C3BC16;
    padding: 15px;
    border-radius: 4px;
}

.dash3 h6 {
    color: #C3BC16;
}

.dash4 {
    background-color: #FFE9E9;
    color: #E91C1C;
    padding: 15px;
    border-radius: 4px;
}

.dash4 h6 {
    color: #E91C1C;
}

.green {
    background-color: #E5FFF2;
    color: #16C37A;
    border-radius: 4px;
}

.green h6 {
    color: #16C37A;
}

.red {
    background: #FFF3F3;
    color: #E91C1C;
    border-radius: 4px;
}

.red h6 {
    color: #E91C1C;
}

.red2 {
    background: #FAFFE5;
    color: #C3BC16;
    border-radius: 4px;
}

.red2 h6 {
    color: #C3BC16;
}

.orange {
    background: #FFF3E5;
    color: #C37E16;
    border-radius: 4px;
}

.orange h6 {
    color: #C37E16;
}

.light {
    background-color: #EEF5FF;
    color: #4D4F91;
    border-radius: 4px;
}

.light h6 {
    color: #4D4F91;
}

.demo {
    display: flex;
    gap: 10px;
}

.demo1 {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1000px) {
    .loginimage {
        display: none;
    }

    .demo {
        flex-direction: column;
    }
}

@media (max-width: 800px) {
    .dash {
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .loginpage {
        margin: 10px;
    }
}

@media (max-width: 600px) {
    .demo1 {
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    .inputs input {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .select {
        width: 350px;
    }

    .mycard {
        padding: 20px;
        width: 170px;
        background-color: white;
        border-radius: 5px;
        box-shadow: 0 0 10px #6b686833;
    }
}

/* Style for the active menu link */
.menu-link.active {
    background: #1C1C1C;
}

.menu-link.active .menu-icon {
    color: white;
}

.menu-link.active .text-truncate {
    color: white;
}


.layout-container.sidebar-open #layout-menu {
    transform: translateX(0);
}

.layout-container #layout-menu {
    transform: translateX(-250px);
    /* Adjust based on your sidebar width */
    transition: transform 0.3s ease;
}

@media (min-width: 1200px) {
    .layout-container #layout-menu {
        transform: translateX(0);
        /* Always visible on xl screens */
    }
}

/* Card container */
.success-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #d4f8e8;
    /* Light green background */
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    /* Adjust as needed */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    font-family: Arial, sans-serif;
}

/* Card content */
.success-content {
    display: flex;
    flex-direction: column;
}

.success-title {
    font-size: 14px;
    color: #4caf50;
    /* Green color */
    font-weight: bold;
    margin: 0 0 10px;
}

.success-data {
    margin: 5px 0;
    color: #4caf50;
    font-size: 16px;
    font-weight: bold;
}

.success-data span {
    font-weight: normal;
}

/* Icon container */
.success-icon {
    background-color: #4caf50;
    /* Green circle */
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

@media screen and (max-width: 480px) {
    .success-card {
        width: 100%;
        /* Full width for small screens */
        padding: 15px;
    }
}