.gradient-black-bottom-popup {
    width: 100% !important;
    background: linear-gradient(to bottom, #333, #000);
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 20px;
    font-size: clamp(11px, 2.2vw, 20px) !important;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #1D1D1D;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.step.active {
    background-color: #8744BB;
}

.font-title {
	font-family: 'Nunito-Regular';
    font-weight: bold;
    font-size: clamp(10px, 2.5vw, 22px) !important;
    color: white;
    text-align: center;
}
.font-subtitle {
	font-family: 'Nunito-Regular';
    font-size: clamp(10px, 2.0vw, 18px) !important;
    color: white;
    text-align: center;
}

.font-bold-normal {
    font-family: 'Nunito-Regular';
    font-weight: bold;
    font-size: clamp(10px, 2.5vw, 15px) !important;
    color: white;
    text-align: center;
}

.font-normal {
    font-family: 'Nunito-Regular';
    font-size: clamp(10px, 2.5vw, 15px) !important;
    color: white;
    text-align: center;
    margin:0;
}

.font-normal-black {
    font-family: 'Nunito-Regular';
    font-size: clamp(10px, 2.5vw, 15px) !important;
    color: black;
    text-align: center;
    margin:0;
}

.font-normal-left{
    font-family: 'Nunito-Regular';
    font-size: clamp(10px, 2.5vw, 15px) !important;
    color: white;
    text-align: left !important;
    margin:0 !important;
}

.font-small {
    font-family: 'Nunito-Regular';
    font-size: clamp(9px, 0.6vw, 15px) !important;
    color: #D0D5DC;
    text-align: center;
}

.font-small-left {
    font-family: 'Nunito-Regular';
    font-size: clamp(10px, 0.6vw, 15px) !important;
    color: #D0D5DC;
    text-align: left !important;
    margin:0 !important;
}
.font-orange {
    color: #E28D3D;
}

.deposit-total {
    background-color: #1D1D1D;
    color: white;
    font-size: clamp(11px, 2.5vw, 24px) !important;
    font-weight: bold;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    width: 200px;
    margin: 0 auto;
    margin-top: 15px;
}

.btn-base {
    color: white;
    font-weight: bold;
    width: 100%;
    min-width: 100px;
    max-width: 150px;
    height: 50px;
    border-radius: 8px;
    font-size: clamp(11px, 1.2vw, 16px) !important;
    text-transform: uppercase;
}

.btn-value {
    background-color: rgba(151, 42, 238, 1) !important;  /* Purple */
    color: #ffffff;
}

.btn-value-focused {
    background-color: #F1DFFF !important;
    border: 3px solid #444 !important;
    box-shadow: 0 0 0 3px #F1DFFF !important;
    position: relative;
    z-index: 1;
    color: #6400B3 !important;
}
.btn-value-clicked {
    border: 0px !important;
    background-color: #34045A !important;
    box-shadow: 0 0 0 3px #34045A !important;
    color: #ffffff !important;
}

.btn-confirm {
    color: white !important;
    background-color: #21A13C !important;
}

.btn-confirm-focused {
    background-color: #DFFFE6 !important;
    border: 3px solid #444 !important;
    box-shadow: 0 0 0 3px #DFFFE6 !important;
    position: relative;
    z-index: 1;
    color: #198931 !important;
}
.btn-confirm-clicked {
    border: 0px !important;
    background-color: #103418;
    box-shadow: 0 0 0 3px #103418 !important;
    color: #ffffff !important;
}
.btn-clicked {
    border: 0px !important;
    background-color: #34045A;
    box-shadow: 0 0 0 3px #34045A !important;
    color: #ffffff !important;
}

.btn-confirm-disabled {
    background-color: #727272 !important;  /* Grey */
}


.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    width: 100%;
}
.button-container:has(.v-btn:nth-child(n+6)) {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc(100% / 4), 1fr));
}
/* Remove Vuetify margins */
.v-application--is-ltr .v-card__actions > .v-btn.v-btn {
    margin: 0 !important;
}
.custom-dialog-width {
    width: 50% !important;
    max-width: 600px; 
    min-width: 300px;
}

.v-card-popup {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.message-body-box {
    background-color: #1D1D1D;
    border: 1px solid #444;
    border-radius: 8px; 
    padding: 10px 15px;
    color: #ffffff;
    font-size: clamp(11px, 1.2vw, 16px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.box-title {
    font-family: 'Nunito-Regular';
    font-size: clamp(12px, 1.0vw, 20px) !important;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #D0D5DC;
}
.box-label {
    font-family: 'Nunito-Regular';
    font-size: clamp(13px, 1.5vw, 16px) !important;
    color: #D0D5DC;
}
.box-value {
    font-family: 'Nunito-Bold';
    font-size: clamp(13px, 0.8vw, 16px) !important;
    text-transform: uppercase;
    color: #ffffff;
}
.box-id {
    font-family: 'Nunito-Bold';
    font-size: clamp(16px, 2.5vw, 30px) !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
}

.box-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #444;
}
.box-row:last-child {
    border-bottom: none; /* Remove border for the last row */
}

.box-row-justify-left {
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 8px 0;
}

.img-emoji {
    width: 5%;
    height: auto;
    object-fit: contain;
    margin: 5px;
}

.img-emoji-medium {
    width: 15%;
    height: auto;
    object-fit: contain;
    margin: 5px;
}

.img-emoji-large {
    width: 30%;
    height: auto;
    object-fit: contain;
}
.v-btn:focus:before {
    opacity: 0 !important;
}