.queue_card {
    width: 615px;
    border-radius: 30px;
    background-color: #fff;
    padding-block: 20px;
    padding-inline: 30px;
}


.num_keyboard {
    width: 33%;
    border-radius: 5px;
    height: 90px
}

.alpha_keyboard {
    width: 9.6%;
    border-radius: 5px;
    height: 70px
}

.alpha_keyboard_half {
    width: 4.8%;
    border-radius: 5px;
    height: 70px
}

.alpha_keyboard_numbers {
    width: 14%;
    border-radius: 5px;
    height: 70px
}

.alpha_keyboard_space {
    width: 70%;
    border-radius: 5px;
    height: 70px
}

.alpha {
    font-size: 48px;
    font-weight: 600;
}

.last_row {
    font-size: 25px;
    font-weight: 600;
}

.arrow-up,
.emoji-icon {
    width: 44px;
    height: 44px;
}

.keypad_effect {
    transition: transform 0.1s, background-color 0.1s;
}

.keypad_effect:active {
    transform: scale(0.9);
    box-shadow: 2px 7px 18px 4px rgba(0, 0, 0, 0.75);
}


.queue_display_card {
    width: 90%;
    border-radius: 30px;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 80vh;
}

.queue_display_card_left {
    width: 60%;
    border-right: 1px solid #eee;
    height: 100%;
}

.queue_display_card_right {
    width: 40%;
    height: 100%;
}

.queue-column {
    overflow: auto;
}

/* Webkit-based browsers */
::-webkit-scrollbar {
    background-color: #fff;
}

/* Webkit-based browsers */
::-webkit-scrollbar-thumb {
    background-color: #009EFD;
}

/* Webkit-based browsers */
::-webkit-scrollbar {
    width: 5px;
    height: 2px;
}

/* Webkit-based browsers */
::-webkit-scrollbar-thumb {
    width: 5px;
    height: 2px;
    border-radius: 10px;
}

.blink_text {
    animation: blinker 2s linear infinite;
  }
  
  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }

@media screen and (max-width: 900px) {
    .queue_card {
        width: 90%;
    }

    .queue_display_card {
        width: 100%;
        border-radius: 30px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        overflow: auto;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
    }

    .q_num{
        font-weight: 600 !important;
        font-size: 30px !important;
    }
    .queue_display_card_left {
        width: 100%;
        height: 50%;
    }

    .queue_display_card_right {
        width: 100%;
        height: 50%;
        border-radius: 30px;
    }

    .num_keyboard {
        width: 33%;
        height: 60px
    }

    .alpha_keyboard {
        width: 9.6%;
        height: 50px
    }

    .alpha {
        font-size: 24px;
        font-weight: 500;
    }

    .last_row {
        font-size: 18px;
        font-weight: 500;
    }

    .alpha_keyboard_space {
        width: 50%;
        height: 50px
    }

    .alpha_keyboard_numbers {
        width: 24%;
        height: 50px
    }

    .alpha_keyboard_half {
        width: 4.8%;
        height: 50px
    }

    .arrow-up,
    .emoji-icon {
        width: 30px;
        height: 30px;
    }
}