/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap");

/* Genel stiller */
.form__content__register {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    max-width: 100%;
    margin: 0 auto;
}

    .form__content__register,
    .form__content__register * {
        user-select: none; /* metin seçimini engeller */
    }

.form__logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 180px;
    height: auto;
}

.container__register {
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    background: white;
    padding: 20px;
    margin: 0 auto;
    max-width: 800px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Sekme butonları */
.button-group_ab {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 2px;
}

.button {
    width: 100px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    background-color: #f5f5f5;
    color: #666;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

    .button.active {
        background-color: white;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        color: #414141;
        border-color: #ddd;
        font-weight: 700;
    }

    .button:hover {
        background-color: #e9e9e9;
    }

/* Sekme içerikleri */
.tabs {
    min-height: 420px;
    max-height: 500px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    overflow-y: auto;
}

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Form stilleri */
.subheading__register {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subheading__exit {
    font-size: 14px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.exit__button {
    background: #f0f0f0;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

    .exit__button:hover {
        background: #e0e0e0;
    }

.form-group {
    margin-bottom: 15px;
}

.form__style {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

    .form__style .form-group {
        flex: 1;
        min-width: 250px;
    }

.input-container, .input-container-update {
    border: 1px solid #CCC;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background: #FAFAFA;
}

    .input-container label, .input-container-update label {
        min-width: 120px;
        font-weight: 500;
        color: #555;
        margin-right: 10px;
    }

.input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
}

select.input {
    appearance: menulist;
    background: transparent;
}

/* Checkbox stilleri */
.form-check {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.form-check-input {
    margin-top: 3px;
    margin-right: 10px;
}

.form-check-label {
    font-size: 14px;
    line-height: 1.4;
    color: #555;
}

/* Buton stilleri */
.submit-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 15px;
    width: 100%;
}

    .submit-button:hover {
        background-color: var(--secondary-color);
    }

#returnBtn {
    background-color: #e0e0e0; /* Açık gri */
    color: #333; /* Koyu gri yazı */
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
    width: 100%;
}

    #returnBtn:hover {
        background-color: #d5d5d5; /* Hover için biraz daha koyu gri */
    }

/*=== Colores ===*/
:root {
    --first-color: #12192C;
    --text-color: #8590AD;
    --body-font: 'Roboto', sans-serif;
    --big-font-size: 2rem;
    --normal-font-size: 0.938rem;
    --smaller-font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
    :root {
        --big-font-size: 2.5rem;
        --normal-font-size: 1rem;
    }
}

/*===== BASE =====*/
*, ::before, ::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    color: var(--first-color);
    overflow-x: hidden;
}

h1 {
    margin: 0;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/*===== FORM =====*/
.l-form {
    position: relative;
    height: 98%;
}

.form {
    flex: 1;
    height: 88% !important;
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    min-height: 0;
}

.form__content,
.form__content * {
    user-select: none; /* metin seçimini engeller */
}

.form__content {
    margin-bottom: 5rem !important;
}

.form__img {
    display: block;
}

/* Form social */
.form__social {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    gap: 10px;
    margin-top: 2rem;
}

.form__social-icon {
    width: 20vh;
}

/* Container stilleri */
.container {
    align-content: center;
    width: 412px !important;
    height: auto !important;
    border: 1px solid #E5E5E5 !important;
    border-radius: 6px !important;
    background: white !important;
    padding: 20px !important;
    margin: 0 auto !important;
}

.container__register {
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    background: white;
    padding: 12px;
    margin: 0 auto;
}

.heading {
    text-align: center;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

.subheading {
    text-align: center;
    color: #414141;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.subheading__exita {
    color: #919191;
    font-size: 10px;
    font-weight: 300;
    padding: 0 0 0 3px;
}

/* Kart stilleri */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .card img {
        width: 100%;
        height: 150px;
    }

.drawlots-card-content {
    padding-top: 10px;
    padding-left: 10px;
}

    .drawlots-card-content h3 {
        margin: 8px 0;
        font-size: 18px;
        color: #333;
    }

    .drawlots-card-content p {
        margin: 4px 0;
        font-size: 14px;
        color: #555;
    }

.drawlots-card {
    display: flex;
    border: 1px solid var(--first-color);
    border-radius: 8px;
    padding: 10px 15px 0px 10px;
    margin-bottom: 12px;
    background-color: white;
    box-shadow: 2px 2px 4px var(--first-color);
    /*    display: inline-flex;
    border: 1px solid rgba(254, 121, 0, 0.29);
    width: -webkit-fill-available;
    border-radius: 8px;
    padding: 1px 0px 1px 10px;
    margin-bottom: 12px;
    background-color: #ff950d14;
    box-shadow: rgba(214, 91, 13, 0.63) 2px 2px 4px;*/
}

.drawlots-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.drawlots-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    margin: 1px 0px -8px 0px !important;
}

    .drawlots-row:last-child {
        border-bottom: none;
    }



.drawlots-value {
    font-size: 12px;
    color: #333;
    font-weight: 600;
}

.drawlots-card-img {
    height: 22vh;
    width: 18vh;
    object-fit: contain;
    margin-right: 15px;
    border-radius: 6px;
    background: #fff;
}

.order-card {
    border: 1px solid #fe79004a;
    border-radius: 8px;
    padding: 10px 15px 0px 10px;
    margin-bottom: 5px;
    background-color: white;
    box-shadow: 2px 2px 4px var(--first-color); 
}

.order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1px 0px -8px 0px !important;
    border-bottom: 1px solid #f0f0f0;
}

.order-value {
    font-size: 12px;
    color: #333;
    font-weight: 600;
}

.order-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}
/* Button grupları */
.button-group {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.button-group_ab {
    display: flex;
    margin-bottom: 20px;
}

.button {
    width: 88px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

    .button.login {
        background-color: white;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
        color: #414141;
    }

    .button.register {
        background-color: #F5F5F5;
        color: #414141;
    }

.form-group {
    margin-bottom: 1px !important;
}

.input-container {
    border: 1px solid #CCC !important;
    border-radius: 6px !important;
    padding: 6px !important;
    display: flex !important;
    align-items: center !important;
    margin-bottom: 2px;
    overflow-x: auto;
    white-space: nowrap;
}

.input-container-update {
    border: 1px solid #CCC !important;
    border-radius: 6px !important;
    padding: 5px !important;
    display: flex !important;
    align-items: center !important;
    margin-bottom: 2px;
    overflow-x: auto;
    white-space: nowrap;
}

.input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    background: #FAFAFA;
}

.submit-button {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

    .submit-button:hover {
        background-color: var(--secondary-color);
    }

.sign-button {
    color: #414141;
    border: 1px solid #E5E5E5;
    margin-top: 1rem;
    width: 100%;
    background-color: #F5F5F5;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

label {
    display: inline-block !important;
    max-width: 100% !important;
    margin-bottom: 0px !important;
    font-weight: 700 !important;
}

.form-check-label {
    color: #919191;
    font-size: 10px;
}

.subheading__register {
    text-align: left;
    color: #414141;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 0 0 0 3px;
}

.subheading__exit {
    color: #919191;
    font-size: 13px;
    float: inline-end;
    font-weight: 400;
}

.exit__button {
    padding: 0px 4px 0px 4px;
    border-radius: 6px;
    border: 1px solid #919191;
}

.sms__code__input {
    background: #FAFAFA;
    border: 1px solid #E5E5E5;
    width: 35.48px;
    height: 36px;
    border-radius: 6px;
    text-align: center;
}

    .sms__code__input::placeholder {
        color: gray;
        font-size: 14px;
        opacity: 0.7;
        text-align: center;
    }

.sms__container {
    align-content: center;
    width: 412px !important;
    height: 400px !important;
    border: 1px solid #E5E5E5 !important;
    border-radius: 6px !important;
    background: #FAFAFA !important;
    padding: 20px !important;
    margin: 0 auto !important;
}

.sms__container2 {
    align-content: center;
    width: 412px !important;
    height: 400px !important;
    border: 1px solid #E5E5E5 !important;
    border-radius: 6px !important;
    background: #FAFAFA !important;
    padding: 20px !important;
    margin: 0 auto !important;
}

.button_ab {
    padding: 10px 20px;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button.active {
    background-color: white;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    color: #414141;
}




.tab-content.active {
    display: block;
}

/* FOOTER DÜZENLEMELERİ - ARKA PLAN ŞEFFAF */
.button-list {
    position: relative;
    width: 100%;
    background: transparent !important; /* Şeffaf arka plan */
    padding: 15px 0;
    margin-top: auto;
}

    .button-list ul {
        list-style-type: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 0;
        margin: 0;
    }

.footer__social {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.footer-info {
    color: white;
    font-size: smaller;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 10px;
}

    .social-icons img {
        width: 24px;
        height: 24px;
    }

.logo img {
    height: 36px;
}

.footer__btn {
    font-family: Inter, sans-serif;
    font-weight: 700;
    color: #414141;
    background-color: white;
    border: 1px solid #ccc;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
}

/* Loading animasyonu */
.loader {
    position: absolute;
    top: calc(50% - 32px);
    left: calc(50% - 32px);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    perspective: 800px;
}

.inner {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

    .inner.one {
        left: 0%;
        top: 0%;
        animation: rotate-one 1s linear infinite;
        border-bottom: 3px solid #EFEFFA;
    }

    .inner.two {
        right: 0%;
        top: 0%;
        animation: rotate-two 1s linear infinite;
        border-right: 3px solid #EFEFFA;
    }

    .inner.three {
        right: 0%;
        bottom: 0%;
        animation: rotate-three 1s linear infinite;
        border-top: 3px solid #EFEFFA;
    }

@keyframes rotate-one {
    0% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@keyframes rotate-two {
    0% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@keyframes rotate-three {
    0% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}

#loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    opacity: 0.7;
    background-color: var(--primary-color);
    z-index: 999999;
    text-align: center;
}

#loading-image {
    position: absolute;
    top: 100px;
    left: 240px;
    z-index: 100;
}

.bordered-title {
    background-color: white;
    position: absolute;
    padding: -1px;
    margin-top: -9px;
    margin-left: 15px;
}

    .bordered-title .title {
        position: absolute;
        top: -10px;
        left: 10px;
        background: #fff;
        padding: 0 5px;
        font-weight: bold;
    }

    .bordered-title .content {
        margin-top: 10px;
    }

.drawlots-row {
    margin: 1px 0px -8px 0px !important;
}

/* MEDIA QUERIES - MOBİL UYUM */
@media screen and (max-width: 768px) {
    /* Genel düzenlemeler */
    body {
        overflow-x: hidden;
    }

    .l-form {
        height: auto;
        min-height: 100vh;
        padding-bottom: 0;
    }

    .form {
        height: auto !important;
        min-height: 80%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 20px 10px;
    }

    /* Container düzenlemeleri */
    .container, .container__register {
        width: 95% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 15px !important;
    }

    /* Form elemanları */
    .form__style {
        flex-direction: column;
        gap: 10px;
    }

        .form__style .form-group {
            min-width: 100%;
            max-width: 100%;
        }

    .input-container, .input-container-update {
        min-width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden;
        flex-wrap: nowrap;
    }

    .input {
        min-width: 100% !important;
        max-width: 100% !important;
    }

    /* Checkbox düzenlemeleri */
    .form-check {
        width: 100%;
        margin: 5px 0;
    }

    .form-check-label {
        white-space: normal;
        word-wrap: break-word;
        width: 90%;
        font-size: 12px;
    }

    /* Footer mobil düzenlemesi - ARKA PLAN ŞEFFAF */
    .button-list {
        position: relative;
        bottom: auto;
        margin-top: 20px;
        padding: 10px 0;
        background: transparent !important;
    }

        .button-list ul {
            flex-wrap: wrap;
            gap: 8px;
            padding: 0 10px;
        }

        .button-list li {
            flex: 1;
            min-width: 45%;
            text-align: center;
        }

    .footer__btn {
        width: 100%;
        font-size: 11px;
        padding: 6px 8px;
        white-space: normal;
        word-wrap: break-word;
        height: auto;
        min-height: 40px;
    }

    .footer__social {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-info {
        text-align: center;
        margin: 5px 0;
        color: white;
    }

    .logo {
        text-align: center;
        margin-top: 5px;
    }

    /* QR kod gizleme */
    .qrCode {
        display: none !important;
    }

    /* Bootstrap select düzenlemesi */
    .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
        width: 100% !important;
    }
}

@media screen and (max-width: 480px) {
    .container, .container__register {
        padding: 10px !important;
    }

    .button-list ul {
        flex-direction: column;
        gap: 5px;
    }

    .button-list li {
        min-width: 100%;
    }

    .footer__btn {
        font-size: 10px;
        padding: 5px;
        min-height: 35px;
    }

    .form-check-label {
        font-size: 11px;
    }

    .sms__code__input {
        width: 30px !important;
        height: 32px;
        font-size: 12px;
    }
}

@media screen and (min-width: 968px) {
    .form {
        grid-template-columns: 1fr 1fr;
        padding: 0 2rem;
    }

    .form__content {
        width: 320px !important;
    }

    .form__img {
        display: block;
        width: 600px;
        justify-self: center;
    }
}

/* Yatay mod için düzenlemeler */
@media screen and (max-width: 900px) and (orientation: landscape) {
    .l-form {
        height: auto;
        min-height: 90%;
    }

    .form {
        display: flex height: auto;
        min-height: 90%;
        padding: 15px 0;
    }

    .tabs {
        min-height: 40vh;
    }
}

/* Modal stilleri */
.modal {
    display: none;
    position: fixed;
    z-index: 9999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: white;
    margin: 5vh auto;
    padding: 20px;
    border: 5px solid var(--primary-color);
    width: 80%;
    max-height: 80%;
    overflow-y: auto;
}

.modal-iframe {
    width: 100%;
    height: 800px;
    border: none;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover, .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

/* Firefox için düzeltmeler */
@-moz-document url-prefix() {
    input, select, textarea {
        min-width: 0 !important;
    }
}

/* Genel kaydırma önleme */
input, select, textarea, button {
    box-sizing: border-box;
    max-width: 100%;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
/* Kurumsal Müşteri Bölümü Düzenlemesi */
.form-check {
    margin-bottom: 15px !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

#vat_number_fields {
    display: none;
    margin-top: 15px;
    width: 100%;
}

    #vat_number_fields.hidden {
        display: none !important;
    }

    #vat_number_fields:not(.hidden) {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
    }

/* Her bir vergi alanı için container */
.vat-field-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

    .vat-field-group .input-container-update {
        border: 1px solid #CCC !important;
        border-radius: 6px !important;
        padding: 10px !important;
        display: flex !important;
        align-items: center !important;
        background: #FAFAFA;
        width: 100%;
    }

    .vat-field-group label {
        min-width: 120px;
        font-weight: 500;
        color: #555;
        margin-right: 10px;
        font-size: 14px;
    }

    .vat-field-group .input {
        width: 100%;
        border: none;
        outline: none;
        font-size: 14px;
        background: transparent;
    }

/* Masaüstü için yan yana dizilim */
@media screen and (min-width: 769px) {
    #vat_number_fields:not(.hidden) {
        flex-direction: row !important;
        gap: 15px;
    }

    .vat-field-group {
        flex: 1;
        min-width: 250px;
    }
}

/* Mobil düzenlemeleri */
@media screen and (max-width: 768px) {
    #vat_number_fields:not(.hidden) {
        flex-direction: column;
        gap: 10px;
    }

    .vat-field-group {
        min-width: 100%;
    }

        .vat-field-group .input-container-update {
            padding: 8px !important;
        }

        .vat-field-group label {
            min-width: 100px;
            font-size: 13px;
            margin-right: 8px;
        }
}

@media screen and (max-width: 480px) {
    .vat-field-group .input-container-update {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px !important;
        gap: 5px;
    }

    .vat-field-group label {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 5px;
    }
}

/* Checkbox etiketi */
.form-check label[for="vat_number_control"] {
    font-weight: 600 !important;
    color: #414141 !important;
    font-size: 14px !important;
    cursor: pointer;
}

.form-check-input {
    cursor: pointer;
}
/* Footer ortalama - mevcut CSS'e ek */
.footer-main {
    display: contents;
    justify-content: center;
    width: 100%;
    margin-top: 80px;
}

    .footer-main .button-list {
        text-align: center;
    }

        .footer-main .button-list ul {
            display: inline-flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

    .footer-main .footer__social {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
    }

.locked-field {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

/*.order-card {
    border: 1px solid rgba(254, 121, 0, 0.29);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 12px;
    background-color: #fff;
    box-shadow: rgba(214, 91, 13, 0.2) 2px 2px 4px;
}

.order-row {
    display: flex; 
    align-items: flex-start;
    margin-bottom: 6px;
}

.drawlots-card {
    border: 1px solid rgba(254, 121, 0, 0.29);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 12px;
    background-color: #ff950d14;
    box-shadow: rgba(214, 91, 13, 0.63) 2px 2px 4px;
}

.drawlots-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.drawlots-card-img {
    height: 15vh;
    object-fit: contain;
    margin-right: 15px;
    border-radius: 6px;
    background: #fff;
}

.drawlots-card-content {
    flex: 1;
}

    .drawlots-card-content h3 {
        margin: 0 0 5px;
        font-size: 18px;
        font-weight: 600;
        color: #333;
    }

    .drawlots-card-content p {
        margin: 4px 0;
        font-size: 14px;
        color: #444;
    }


.order-label {
    font-weight: bold;
}

.order-value {
    text-align: right;
}
*/
