.account-det-card {
    background-color: #9680f6a3;
    border-radius: 10px;
}

.purpleshades {
    background-color: #9680f6a3;
}

.icon-bg {
    background-color: #350de7a3;
}

.txt-sm {
    font-size: 12px;
}

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* background-color: rgba(255, 255, 255, 0.98); */
    background-color: var(--adminuiux-bg-1);
    z-index: 1050;
    padding: 5%;
    overflow-y: auto;
    display: none;
    /* Hidden by default */
}

.fullscreen-menu.show {
    display: block;
}

.menu-item {
    display: block;
    text-decoration: none;
    color: inherit;
    background-color: var(--adminuiux-theme-1);
    border: 1px solid #7c69f8;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.menu-item:hover {
    background-color: #0b0068cf;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.menu-item h6 {
    font-size: 12px;
    margin: 0;
    padding: 0;
    color: #fff;
    font-weight: 400;
}

.icon-wrapper {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    color: #d3e0f4f9;
}

body.menu-open {
    overflow: hidden;
}



.card-container {
    width: 300px;
    height: 200px;
    perspective: 1000px;
    margin: 0 auto;
}

.card-flip {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.card-flip.flipped {
    transform: rotateY(180deg);
}

.debit-card-front,
.debit-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    background-size: cover;
}

.debit-card-front {
    background: linear-gradient(135deg, #4158D0, #C850C0);
    color: white;
    z-index: 2;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.debit-card-back {
    background: linear-gradient(135deg, #43cea2, #185a9d);
    color: white;
    transform: rotateY(180deg);
    padding: 20px;
}

.chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #daa520, #cd7f32);
    border-radius: 5px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.chip::before {
    content: "";
    position: absolute;
    width: 65%;
    height: 60%;
    top: 15%;
    left: 17.5%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    border-radius: 3px;
}

.card-number {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-family: 'Courier New', monospace;
}

.card-details {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 0px;
}

.card-holder {
    font-size: 14px;
}

.expiry {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.expiry-label {
    font-size: 8px;
    opacity: 0.8;
}

.card-vendor {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
}

.magnetic-strip {
    height: 40px;
    background-color: #111;
    margin: 20px 0;
}

.signature-strip {
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    position: relative;
    margin-bottom: 15px;
}

.signature {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #555;
    font-family: 'Brush Script MT', cursive;
    font-size: 20px;
}

.cvv-box {
    background: white;
    color: black;
    width: 50px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 110px;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    border-radius: 3px;
}

.security-text {
    font-size: 8px;
    margin-top: 5px;
}

.holo-effect {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0) 45%,
            rgba(255, 255, 255, 0.3) 100%);
    border-radius: 50%;
    opacity: 0.7;
}

.toggle-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}


.custom-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
}

.dropdown-content .dropdown-item {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content .dropdown-item:hover {
    background-color: #f1f1f1;
}

.custom-dropdown.active .dropdown-content {
    display: block;
}

.dropdown-menu-end {
    right: 0;
    left: auto;
}

.width-300 {
    width: 300px;
}

.step-full {
    display: none;
}

@media (min-width: 768px) {
    .step-full {
        display: block;
        /* or whatever display style you want */
    }
}