* {
    font-family: 'Poppins', sans-serif !important;
}
i {
    font-family: 'FontAwesome', sans-serif !important;
}
.flash-card-back {
    background: #f4f5fc;
    display: flex;
    justify-content: space-evenly;
    padding: 30px 0 70px;
}
.deck-details-container {
    width: 60%;
}
.deck-link-btn:hover, .deck-link-btn:active, .deck-link-btn:focus {
    text-decoration: none;
}
.mjx-chtml {
    display: inline-block !important;
    vertical-align: middle !important;
    overflow-x: auto;
    max-width: 100% !important;
    padding: 0;
    margin: 0;
    white-space: nowrap;
}
.empty-content-data p:nth-child(2) {
    margin-bottom: 10px;
}
.empty-content-data a {
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    border: none;
    background: #5986C4;
    color: #fff;
    padding: 10px 35px;
    border-radius: 10px;
    display: inline-block;
}
.deck-action-container {
    width: 30%;
}
.action-boxes {
    width: 100%;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.04) 0 4px 15px 0;
    background: #fff;
    border-radius: 15px;
    margin-top: 30px;
    padding: 15px;
}
.ai-top-heading {
    font-size: 20px;
    font-weight: 600;
    border-bottom: 3px solid rgba(46, 106, 180, 1);
    display: inline-block;
    margin: 20px 0 0;
}
.ai-text-heading {
    font-weight: 600;
    margin: 20px 0;
}
.ai-text {
    font-size: 12px;
    line-height: normal;
    margin-bottom: 0;
}
.action-boxes ul {
    margin: 10px 0;
    padding-left: 20px;
}

.action-boxes ul li {
    list-style: disc;
    font-size: 12px;
    line-height: normal;
    padding-bottom: 5px;
}

.action-box-image {
    text-align: center;
    margin: 10px 0 25px;
}

.explore-button {
    text-align: center;
    margin: 25px 0 15px;
}

.explore-button a {
    font-size: 12px;
    font-weight: 600;
    background: rgba(46, 106, 180, 1);
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    text-decoration: none;
}

.explore-button a:hover {
    text-decoration: none;
    color: #fff;
}

.rating-block {
    border: 2px solid #E1AD27;
    border-bottom: 2px solid #E1AD27 !important;
    position: relative;
}

.rating-badge {
    background-color: #ffcc00;
    color: #333;
    font-weight: bold;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 30%;
    position: absolute;
    top: -6px;
    right: -10px;
}

.stars {
    color: #ffcc00;
    font-size: 28px;
}

.rating-block p {
    margin: 0 !important;
}

.rating-block:hover {
    cursor: none !important;
}

.category-header {
    font-size: 14px;
    display: flex;
    gap: 6px;
    color: #1269ba;
    flex-wrap: wrap;
}

.createdAt-cards, .total-cards {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}

.total-cards {
    margin-bottom: 8px;
}

.flashcard-topic {
    margin: 12px 0;
    font-size: 22px;
    line-height: normal;
}

.flashcard-boxes {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 15px 0;
    gap: 15px;
}

.flashcard-boxes a {
    color: #333333;
    text-decoration: none;
}

.flashcard-item {
    box-shadow: rgba(0, 0, 0, 0.04) 0 4px 15px 0;
    background: #fff;
    border-radius: 15px;
    height: 80px;
    width: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.flashcard-item:hover {
    border-bottom: 2px solid #888888;
}

.active-flashcard-item {
    background: rgb(46 106 180 / 12%) !important;
}

.active-flashcard-item:hover {
    border-bottom: 2px solid transparent !important;
    cursor: none !important;
}

.flashcard-item p {
    margin: 5px 0 0;
    font-size: 12px;
    font-weight: 600;
}

.main-flashcard {
    position: relative;
    min-height: 300px;
    height: auto;
    perspective: 1000px;
    transition: transform 0.7s ease-in-out;
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 30px;
    color: #333;
    box-shadow: rgba(0, 0, 0, 0.04) 0 4px 15px 0;
    background: #fff;
    transform-style: preserve-3d;
    transition: transform 0.7s ease-in-out;
}

.card-front {
    transform: rotateX(0deg);
    z-index: 2;
}

.card-back {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transform: rotateX(-180deg);
    z-index: 1;
}

.main-flashcard.flipped .card-front {
    transform: rotateX(180deg);
    z-index: 1;
}

.main-flashcard.flipped .card-back {
    transform: rotateX(0deg);
    z-index: 2;
}

.card-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hidden {
    display: none;
}

.main-flashcard .heading-tag {
    margin: 15px 0;
    font-size: 30px;
    font-weight: 700;
    color: rgba(53, 53, 53, 1);
}

.main-flashcard .type-tag {
    margin: 18px 0;
    font-size: 16px;
    color: #1269ba;
    font-weight: 500;
}

.main-flashcard .para-tag {
    margin: 10px 0 20px;
    line-height: normal;
    font-size: 14px;
    color: rgba(53, 53, 53, 1);
}

.chooseText {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 128, 0, 1);
    margin-bottom: 10px;
}

.flip-card-button {
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 400;
    background: gray;
    color: #fff;
    border: gray;
    width: 100%;
    margin-bottom: 15px;
    cursor: no-drop;
}

.flip-card-button-active {
    border: 1px solid #1269ba;
    background: #1269ba;
    cursor: pointer;
    font-weight: 600;
}

.flip-card-button:hover {
    color: #fff;
}

#card-number {
    font-weight: 600;
    font-size: 15px;
    padding: 0 20px;
    color: #888888;
}

.fullscreen-button {
    cursor: pointer;
}

.btn.flip-card-button:active:focus, .btn.flip-card-button:focus {
    outline: none;
    outline-offset: 0;
    color: #fff;
}

.left-arrow-btn, .right-arrow-btn {
    font-size: 16px;
    border-radius: 50%;
    padding: 5px 10px;
    border: 1px solid #888888;
}

.left-arrow-btn.btn:active:focus, .left-arrow-btn.btn:focus,
.right-arrow-btn.btn:active:focus, .right-arrow-btn.btn:focus {
    outline: -webkit-focus-ring-color auto 1px;
    outline-offset: -2px;
}

.divider {
    border: 1px solid #DCDCDC;
    margin: 25px 0;
}

.flashcard-user-detail, .deck-card-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flashcard-user-detail .user-detail, .deck-card-detail .user-detail {
    display: flex;
    align-items: center;
}

.flashcard-user-detail .user-detail i {
    font-size: 32px;
    border: 1px solid #888888;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    text-align: center;
    padding-top: 4px;
}

.flashcard-user-detail .user-detail p {
    margin: 0 0 0 10px;
    font-size: 15px;
    font-weight: 600;
}

.flashcard-user-detail .user-detail span {
    color: #888888;
    font-size: 10px;
    padding-top: 3px;
    display: block;
}

.login-prompt {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.login-prompt-heading {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    line-height: normal;
}

.login-prompt-text {
    font-size: 12px;
    color: #888;
    margin-bottom: 25px;
}

.login-prompt-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.membership-prompt {
    height: 100%;
}

.modal-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.membership-plans-button, .deck-view-button, .modal-prompt-link a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(46, 106, 180, 1);
    border: none;
    margin-top: 5px;
    border-radius: 5px;
}

.membership-plans-button:hover, .deck-view-button:hover, .modal-prompt-link a:hover {
    color: #fff;
    text-decoration: none;
}

.button-boxes {
    border: 1px solid #8888883b;
    width: 100px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.button-boxes:hover {
    text-decoration: none;
    background: #fbfbfb;
}

.button-boxes p {
    margin: 6px 0 0;
    font-size: 12px;
    color: #888;
}

.user-detail-extension button {
    font-size: 12px;
    font-weight: 400;
    background: rgba(46, 106, 180, 1);
    color: #fff;
    border-radius: 10px;
    border: none;
}

.user-detail-extension button {
    padding: 12px 15px;
}

.user-detail-extension button i {
    padding-right: 5px;
}

.related-decks h2 {
    margin: 30px 0;
    border-bottom: 1px solid #888888;
    display: inline-block;
    font-size: 22px;
}

.related-decks-list {
    overflow: auto;
    display: flex;
    gap: 15px;
    padding: 0 2px;
    list-style: none;
}

.related-deck {
    width: 300px;
    box-sizing: border-box;
    flex: 0 0 300px;
    color: #000;
    border-radius: 10px;
    padding: 15px;
    background: #fff;
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid transparent;
}

.related-deck:hover {
    border: 1px solid #5986C4;
}

.related-deck .flashcard-heading-text {
    font-size: 18px;
    font-weight: 600;
    color: #2E4F7E;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
}

.related-deck .flashcard-detail-text {
    color: #767676;
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
}

.related-deck .flashcard-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.related-deck .tag, .related-deck .terms {
    background: #D9E3F2;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    color: #2E4F7E;
}

.related-deck .user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.related-deck .flashcard-rating {
    color: #E1AD27;
}

.related-deck .user-info .user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #B4C8E4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #2E4F7E;
}

.related-deck .user-info span {
    font-size: 12px;
    color: #2E4F7E;
}

.related-deck .flashcard-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.related-deck .preview-button {
    background: #2E4F7E;
    border: 1px solid #2E4F7E;
    color: #fff;
    width: 95px;
    height: 30px;
    font-size: 12px;
    border-radius: 15px;
}

.related-deck .view-deck-detail {
    background: transparent;
    border: 1px solid #2E4F7E;
    color: #2E4F7E;
    padding: 5px 20px;
    font-size: 12px;
    border-radius: 15px;
}

.related-deck .view-deck-detail:hover {
    text-decoration: none;
}

.related-deck .flashcard-mask {
    position: absolute;
    bottom: 0;
    left: 0;
}

.related-deck .flashcard-mask img {
    width: 100%;
}

.dont-know-option {
    color: #1269ba;
}

.dont-know-option a {
    color: red;
}

/*  Start Full Screen Mode Css  */
#flashcard-section {
    position: relative;
}

#flashcard-section.fullscreen-mode {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(10, 9, 45, .6);
    height: 100vh;
    padding: 20px;
}

.main-flashcard-right-preview {
    display: none;
}

.fullscreen-header {
    display: none;
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

#flashcard-section.fullscreen-mode .flashcard-container {
    width: 70%;
    margin: 0 auto;
}

#flashcard-section.fullscreen-mode .fullscreen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left, .header-center, .header-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-center {
    display: block;
    text-align: center;
}

.header-center-topic {
    color: #fff;
    margin: 5px 0 0;
}

.header-right {
    justify-content: flex-end;
}

.category-dropdown {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    min-width: 170px;
}

.category-dropdown option {
    background: #333;
    color: white;
}

.card-count, .preview-card-count {
    margin: 0 20px;
    color: black;
}

.card-count-header {
    display: none;
    color: white;
    font-size: 1.1em;
}

#flashcard-section.fullscreen-mode .card-count {
    display: none;
}

#flashcard-section.fullscreen-mode .card-count-header {
    display: inline-block;
}

.close-fullscreen {
    background: transparent;
    border: none;
    color: white;
    font-size: 2em;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s ease;
}

.close-fullscreen:hover {
    transform: scale(1.1);
}

#flashcard-section.fullscreen-mode .main-flashcard {
    min-height: 400px;
    height: auto;
    perspective: 1000px;
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

.completed-class {
    display: none;
    color: #fff;
    margin-left: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
}

#flashcard-section.fullscreen-mode #flip-card {
    padding: 12px 30px;
    font-size: 1.1em;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin: 5px auto 0;
}

#flashcard-section.fullscreen-mode #flip-card:hover {
    background: rgba(255, 255, 255, 0.2);
}

#flashcard-section.fullscreen-mode .card-navigation {
    margin-top: 20px;
    justify-content: center;
}

#flashcard-section.fullscreen-mode .arrow-button button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
}

#flashcard-section.fullscreen-mode .arrow-button button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.card-navigation .fullscreen-button:hover {
    transform: scale(1.1);
}

.fullscreen-button img {
    transition: opacity 0.2s ease;
}

.fullscreen-button img:hover {
    opacity: 0.8;
}

/*  Start Full Screen Mode Css  */
/*  Start Showing MCQS Css  */
.mcq-options {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 0;
}

.mcq-options li {
    cursor: pointer;
    padding: 12px;
    border: 1px solid #888888;
    border-radius: 10px;
    color: #888888;
    width: 48%;
    margin-bottom: 15px;
}

.MJXc-display {
    display: unset !important;
    margin: 0 !important;
    white-space: normal !important;
}

.option-marker {
    display: inline-block;
    margin-right: 8px;
    font-weight: 500;
}

.mcq-options li:hover:not(.correct):not(.incorrect) {
    background-color: #f3f4f6;
}

.mcq-options li.correct {
    background-color: #dcfce7;
    border: 2px solid #22c55e;
}

.mcq-options li.incorrect {
    background-color: #fee2e2;
    border: 2px solid #ef4444;
}

#feedback {
    position: absolute;
    bottom: 0;
}

/*  End Showing MCQS Css  */
/*   start Modal Css   */
.preview-result-modal, #previewModal .modal-dialog {
    width: 55%;
    height: fit-content;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-body {
    padding: 30px;
}

.modal-title {
    font-size: 22px;
    font-weight: 500;
}

.result-stats, .emoji-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.stat-box {
    border-radius: 10px;
    width: 150px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.emoji-box {
    border: 1px solid #888888;
}

.stat-box h2 {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 10px;
}

.add-cross-icon {
    display: none;
}

.stat-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.total-questions {
    background: #E3F2FD;
}

.correct-answers {
    background: #E8F5E9;
}

.wrong-answers {
    background: #FFEBEE;
}

.skipped-answers {
    background: rgba(10, 95, 68, .2);
}

.emoji-box {
    border-radius: 10px;
    width: 120px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.emoji-box:hover {
    transform: scale(1.1);
}

.emoji {
    font-size: 3rem;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.emoji-box.selected .emoji {
    opacity: 1;
}

.emoji-box p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.rating-modal-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

#continueBtn {
    border-radius: 8px;
    padding: 10px;
    color: #fff;
    background: rgba(46, 106, 180, 1);
    border: none;
}

#backBtn {
    border: 1px solid #66666680;
    color: #666;
    border-radius: 8px;
    padding: 10px;
}

/*   End Modal Css   */

.cards-list {
    margin: 25px 0 0;
    position: relative;
}

.card-list-title {
    font-size: 16px;
    font-weight: 500;
    margin-top: 30px;
}

.cards-list-item {
    width: 100%;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.04) 0 4px 15px 0;
    background: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 20px;
    border-radius: 10px;
}

.cards-list-item .question {
    width: 65%;
    border-right: 3px solid #f4f5fc;
    padding-right: 10px;
    line-height: 25px;
}

.cards-list-item .answer {
    width: 35%;
    line-height: normal;
}

#previewModal .main-flashcard {
    min-height: 250px;
}

#previewModal .modal-header {
    padding: 20px 20px 5px !important;
    border-bottom: 0 !important;
}

#previewModal .modal-title {
    display: inline-block;
}

#previewModal .close {
    display: inline-block;
    padding: 5px 10px;
}

#previewModal .modal-body {
    padding: 0 30px 30px;
}

.modal-image {
    text-align: center;
}

.all-card-image {
    width: 80% !important;
}

.all-card-action {
    display: contents;
}

.all-card-action p {
    margin-bottom: 8px;
    text-align: center;
}

.modal-view-all-btn {
    background: #5986C4;
    color: #fff;
    padding: 10px 30px;
    border-radius: 20px;
    border: none;
    font-size: 12px;
    font-weight: 500;
}

.modal-view-all-btn:hover {
    text-decoration: none;
    color: #fff;
}

@media (max-width: 768px) {
    .flash-card-back {
        flex-direction: column;
    }

    .deck-details-container, .deck-action-container {
        width: 90%;
        margin: 0 auto;
    }

    .deck-details-container {
        padding-top: 50px;
    }

    #previewModal .modal-dialog {
        width: 80%;
    }

    .tooltip {
        display: none !important;
    }
}

@media (max-width: 640px) {
    .main-flashcard {
        min-height: 320px;
        height: auto;
    }

    .tooltip {
        display: none !important;
    }
}

@media (max-width: 500px) {
    .mcq-options li {
        width: 100%;
    }

    .preview-result-modal, #previewModal .modal-dialog {
        width: 90%;
    }

    .result-stats, .emoji-container {
        margin: 15px 0;
    }

    .card-front, .card-back {
        padding: 15px;
    }

    .login-prompt-heading {
        font-size: 16px;
    }

    .login-prompt-text {
        margin-bottom: 15px;
    }

    #flashcard-section.fullscreen-mode .flashcard-container {
        width: 100%;
        margin-top: 45%;
    }

    #flashcard-section.fullscreen-mode .fullscreen-header {
        flex-direction: column;
    }

    .header-left {
        width: 100%;
    }

    .header-center {
        margin-top: 15px;
    }

    .add-cross-icon {
        display: block;
    }

    .header-right {
        display: none;
    }

    .custom-select {
        display: flex;
        justify-content: space-between;
        flex-grow: inherit;
    }

    .select-selected, .select-items {
        width: 90%;
    }

    .tooltip {
        display: none !important;
    }

    .all-card-image {
        width: 100% !important;
    }

}

@media (max-width: 400px) {
    .preview-result-modal, #previewModal .modal-dialog {
        width: 90%;
    }

    .preview-result-modal .modal-body {
        padding: 20px 15px;
    }

    #previewModal .modal-body {
        padding: 0 10px 15px;
    }

    .card-front, .card-back {
        padding: 10px;
    }

    .result-stats, .emoji-container {
        margin: 15px 0;
    }

    .modal-title {
        font-size: 18px;
    }

    .stat-box {
        width: 110px;
        height: 100px;
    }

    .stat-box h2 {
        font-size: 20px;
    }

    .stat-box p, .emoji-box p {
        font-size: 12px;
    }

    .emoji-box {
        width: 100px;
        height: 80px;
    }

    .emoji {
        font-size: 2rem;
    }

    .flashcard-topic, .related-decks h2 {
        font-size: 18px;
    }

    .tooltip {
        display: none !important;
    }
}

.cards-list-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
    padding: 20px;
}

.cards-list-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.cards-list {
    position: relative;
}

.login-overlay-container {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 10;
}

.login-overlay-gradient {
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
}

.login-overlay-card {
    background: rgb(46, 106, 180);
    padding: 30px;
    border-radius: 12px 12px 0 0;
    text-align: center;
    pointer-events: auto;
    color: #fff;
    transition: transform 0.3s ease-in-out;
}

.login-overlay-card.visible {
    transform: translateY(0);
}

.login-overlay-card p {
    margin: 0 0 15px 0;
}

.login-overlay-card p:first-child {
    font-size: 1.25rem;
    font-weight: bold;
}

.login-button {
    display: inline-block;
    background: #fff;
    color: rgb(46, 106, 180);
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s;
}

.login-button:hover {
    background: #f0f0f0;
}

.preview-login-btn {
    cursor: pointer;
}

.custom-select {
    position: relative;
    width: 250px;
}

.coming-soon-span {
    font-size: 10px;
    margin-left: 8px;
    color: #9ac427;
}

.select-selected {
    background-color: transparent;
    color: #fff;
    padding: 8px;
    border: 1px solid gray;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 10px;
    justify-content: space-between;
}

.select-items {
    position: absolute;
    background: rgb(31 30 50);
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border: 1px solid gray;
    border-top: none;
    border-radius: 10px;
    color: #fff;
}

.select-hide {
    display: none;
}

.select-items div {
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.selected-icon {
    margin-left: auto;
}

.select-items .hover-effect:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.view-all-cards-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hover-container {
    position: relative;
    display: inline-block;
    text-align: center;
}

.tooltip {
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    top: 105%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    min-width: 80px;
    max-width: 250px;
    white-space: nowrap;
    width: auto;
    box-sizing: border-box;
}

.copyText.copied + .tooltip,
.hover-container:hover .tooltip {
    display: block;
    opacity: 1;
}

.container-fluid > .navbar-collapse,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container > .navbar-header {
    margin-left: 0 !important;
}

.navbar-left {
    padding-top: 4px !important;
}

@media (min-width: 767px) {
    .screen-width-col-nav, .container {
        max-width: 750px !important;
        width: 100% !important;
    }
}

@media (min-width: 991px) {
    .screen-width-col-nav, .container {
        max-width: 970px !important;
        width: 100% !important;
    }
}

@media (min-width: 1200px) {
    .screen-width-col-nav, .container {
        max-width: 1280px !important;
        width: 100% !important;
    }
}

::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.explore-mode-centered .card-front{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.explore-mode-centered .card-front .type-tag {
    font-size: 22px;
}

.explore-mode-centered .card-front .para-tag {
    font-size: 20px;
}

