.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-overlay.active {
    display: flex;
    animation: overlayFadeIn 0.3s ease-out;
}

.modal-overlay.closing {
    display: flex;
    animation: overlayFadeOut 0.3s ease-in forwards;
}

.modal-content {
    position: relative;
    background: linear-gradient(145deg, #2e1e13, #3c281c);
    border: 2px solid #a87a43;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.65), inset 0 0 6px rgba(0,0,0,0.35);
    max-width: 360px;
    width: 100%;
    box-sizing: border-box;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-overlay.closing .modal-content {
    animation: modalFadeOut 0.3s ease-in forwards;
}

.modal-content.modal-content-form {
    max-width: 500px;
    padding: 0;
    overflow: hidden;
}

.modal-content-form .modal-header {
    margin-bottom: 0;
    padding: 16px 20px;
    background: linear-gradient(145deg, #5b3a22, #4b301c);
    border-bottom: 2px solid #2c1b10;
}

.modal-content-form .modal-title {
    font-size: var(--fs-h2);
    color: var(--title-color);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.modal-form {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-form-label {
    font-size: var(--fs-base);
    color: var(--title-color);
    font-weight: 700;
}

.modal-form-select {
    padding: 10px 32px 10px 14px;
    appearance: none;
    -webkit-appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e8d8c3' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center, linear-gradient(145deg, #2e1e13, #3c281c);
    border: 2px solid #2c1b10;
    border-radius: 6px;
    color: #e8d8c3;
    font-family: var(--font-main);
    font-size: var(--fs-base);
    box-shadow: inset 0 0 4px rgba(0,0,0,0.45);
    transition: all 0.2s;
    cursor: pointer;
}

.modal-form-select:focus {
    outline: none;
    border-color: #a87a43;
    box-shadow: 0 0 8px rgba(168,122,67,0.3), inset 0 0 4px rgba(0,0,0,0.45);
}

.modal-form-select option {
    background: #2e1e13;
    color: #e8d8c3;
}

.modal-form-input {
    padding: 10px 14px;
    background: linear-gradient(145deg, #2e1e13, #3c281c);
    border: 2px solid #2c1b10;
    border-radius: 6px;
    color: #e8d8c3;
    font-family: var(--font-main);
    font-size: var(--fs-base);
    box-shadow: inset 0 0 4px rgba(0,0,0,0.45);
    transition: all 0.2s;
}

.modal-form-input:focus {
    outline: none;
    border-color: #a87a43;
    box-shadow: 0 0 8px rgba(168,122,67,0.3), inset 0 0 4px rgba(0,0,0,0.45);
}

.modal-form-input::placeholder {
    color: #7a6550;
}

.modal-form-textarea {
    padding: 12px 14px;
    background: linear-gradient(145deg, #2e1e13, #3c281c);
    border: 2px solid #2c1b10;
    border-radius: 6px;
    color: #e8d8c3;
    font-family: var(--font-main);
    font-size: var(--fs-base);
    box-shadow: inset 0 0 4px rgba(0,0,0,0.45);
    transition: all 0.2s;
    resize: none;
    min-height: 120px;
    line-height: 1.4;
}

.modal-form-textarea:focus {
    outline: none;
    border-color: #a87a43;
    box-shadow: 0 0 8px rgba(168,122,67,0.3), inset 0 0 4px rgba(0,0,0,0.45);
}

.modal-form-textarea::placeholder {
    color: #7a6550;
}

.modal-form-counter {
    font-size: var(--fs-small);
    color: #7a6550;
    text-align: right;
    margin-top: -4px;
}

.modal-form-counter.near-limit {
    color: #a04545;
}

.modal-form-submit {
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(180deg, #d5b06a 0%, #b07b3c 100%);
    border: 3px solid #2d1b0d;
    border-radius: 6px;
    color: #1a0e05;
    font-family: var(--font-main);
    font-size: var(--fs-base);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 0 #2d1b0d, 0 6px 12px rgba(0,0,0,0.7);
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
    margin-top: 4px;
}

.modal-form-submit::before {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 3px;
    background: linear-gradient(120deg, #e8d08c, #f9e49a, #c89a5a, #e8d08c);
    background-size: 300% 300%;
    z-index: 0;
    animation: innerGlow 2s linear infinite;
    opacity: 0;
    transition: opacity .25s;
}

.modal-form-submit:hover::before {
    opacity: .5;
}

.modal-form-submit:hover {
    background: linear-gradient(180deg, #e8c99a 0%, #c89a5a 100%);
    box-shadow: 0 6px 0 #2d1b0d, 0 8px 14px rgba(0,0,0,0.8);
}

.modal-form-submit:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #2d1b0d;
}

.modal-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.modal-form-submit span {
    position: relative;
    z-index: 1;
}

@media (max-width: 600px) {
    .modal-form {
        padding: 14px;
    }
}

.modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    background: linear-gradient(180deg, #8b3a3a 0%, #723030 100%);
    border: 2px solid #a04545;
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    color: #fff;
    font-size: var(--fs-h1);
    line-height: 1;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 0 #2d1b0d, 0 4px 8px rgba(0,0,0,0.6);
    overflow: hidden;
}

.modal-close::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 4px;
    background: linear-gradient(120deg,
        #a04545,
        #b05555,
        #8b3a3a,
        #a04545
    );
    background-size: 300% 300%;
    z-index: 0;
    animation: innerGlow 2s linear infinite;
    opacity: 0;
    transition: opacity .25s;
}

.modal-close:hover::before {
    opacity: .5;
}

.modal-close:hover {
    background: linear-gradient(180deg, #a04545 0%, #8b3a3a 100%);
    box-shadow: 0 3px 0 #2d1b0d, 0 5px 10px rgba(0,0,0,0.7);
}

.modal-close:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #2d1b0d, 0 2px 4px rgba(0,0,0,0.5);
}

.modal-close span {
    position: relative;
    z-index: 1;
}

.modal-name {
    font-family: var(--font-main);
    font-size: var(--fs-h2);
    color: var(--title-color);
    margin: 0 0 20px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.modal-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: rgba(26,14,5,0.5);
    border: 1px solid rgba(168,122,67,0.35);
    border-radius: 8px;
}

.modal-label {
    font-family: var(--font-main);
    font-size: var(--fs-base);
    color: #e8d8c3;
    font-weight: 600;
}

.modal-value {
    font-family: var(--font-main);
    font-size: var(--fs-base);
    color: #fff0c7;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.modal-text {
    font-weight: 400;
}

.modal-hidden {
    display: none;
    text-align: center;
    font-size: var(--fs-small);
    color: #8b3a3a;
    font-weight: 600;
    margin-top: 12px;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
}

.modal-btn {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #2c1b10;
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-main);
    font-size: var(--fs-base);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 0 #2d1b0d, 0 6px 12px rgba(0,0,0,0.7);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.modal-btn-confirm {
    background: linear-gradient(180deg, #6b7c3f 0%, #5a6b35 100%);
    border-color: #7d8f4a;
}

.modal-btn-confirm::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 4px;
    background: linear-gradient(120deg,
        #7d8f4a,
        #8ba055,
        #6b7c3f,
        #7d8f4a
    );
    background-size: 300% 300%;
    z-index: 0;
    animation: innerGlow 2s linear infinite;
    opacity: 0;
    transition: opacity .25s;
}

.modal-btn-confirm:hover::before {
    opacity: .5;
}

.modal-btn-confirm:hover {
    background: linear-gradient(180deg, #7d8f4a 0%, #6b7c3f 100%);
    box-shadow: 0 4px 0 #2d1b0d, 0 8px 14px rgba(0,0,0,0.8);
}

.modal-btn-confirm:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #2d1b0d, 0 4px 8px rgba(0,0,0,0.6);
}

.modal-btn-confirm span {
    position: relative;
    z-index: 1;
}

.modal-btn-cancel {
    background: linear-gradient(180deg, #8b3a3a 0%, #723030 100%);
    border-color: #a04545;
}

.modal-btn-cancel::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 4px;
    background: linear-gradient(120deg,
        #a04545,
        #b05555,
        #8b3a3a,
        #a04545
    );
    background-size: 300% 300%;
    z-index: 0;
    animation: innerGlow 2s linear infinite;
    opacity: 0;
    transition: opacity .25s;
}

.modal-btn-cancel:hover::before {
    opacity: .5;
}

.modal-btn-cancel:hover {
    background: linear-gradient(180deg, #a04545 0%, #8b3a3a 100%);
    box-shadow: 0 4px 0 #2d1b0d, 0 8px 14px rgba(0,0,0,0.8);
}

.modal-btn-cancel:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #2d1b0d, 0 4px 8px rgba(0,0,0,0.6);
}

.modal-btn-cancel span {
    position: relative;
    z-index: 1;
}

.modal-btn-brown {
    background: linear-gradient(180deg, #8b5e3c 0%, #6b4226 100%);
    border-color: #a07040;
}

.modal-btn-brown::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 4px;
    background: linear-gradient(120deg,
        #a07040,
        #b08050,
        #8b5e3c,
        #a07040
    );
    background-size: 300% 300%;
    z-index: 0;
    animation: innerGlow 2s linear infinite;
    opacity: 0;
    transition: opacity .25s;
}

.modal-btn-brown:hover::before {
    opacity: .5;
}

.modal-btn-brown:hover {
    background: linear-gradient(180deg, #a07040 0%, #8b5e3c 100%);
    box-shadow: 0 4px 0 #2d1b0d, 0 8px 14px rgba(0,0,0,0.8);
}

.modal-btn-brown:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #2d1b0d, 0 4px 8px rgba(0,0,0,0.6);
}

.modal-btn-brown span {
    position: relative;
    z-index: 1;
}

.modal-btn-yellow {
    background: linear-gradient(180deg, #b8860b 0%, #9a7009 100%);
    border-color: #c9973c;
}

.modal-btn-yellow::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 4px;
    background: linear-gradient(120deg,
        #c9973c,
        #d4a84d,
        #b8860b,
        #c9973c
    );
    background-size: 300% 300%;
    z-index: 0;
    animation: innerGlow 2s linear infinite;
    opacity: 0;
    transition: opacity .25s;
}

.modal-btn-yellow:hover::before {
    opacity: .5;
}

.modal-btn-yellow:hover {
    background: linear-gradient(180deg, #c9973c 0%, #b8860b 100%);
    box-shadow: 0 4px 0 #2d1b0d, 0 8px 14px rgba(0,0,0,0.8);
}

.modal-btn-yellow:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #2d1b0d, 0 4px 8px rgba(0,0,0,0.6);
}

.modal-btn-yellow span {
    position: relative;
    z-index: 1;
}

.modal-btn-blue {
    background: linear-gradient(180deg, #4a6670 0%, #3d555e 100%);
    border-color: #5d7a85;
}

.modal-btn-blue::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 4px;
    background: linear-gradient(120deg,
        #5d7a85,
        #708c98,
        #4a6670,
        #5d7a85
    );
    background-size: 300% 300%;
    z-index: 0;
    animation: innerGlow 2s linear infinite;
    opacity: 0;
    transition: opacity .25s;
}

.modal-btn-blue:hover::before {
    opacity: .5;
}

.modal-btn-blue:hover {
    background: linear-gradient(180deg, #5d7a85 0%, #4a6670 100%);
    box-shadow: 0 4px 0 #2d1b0d, 0 8px 14px rgba(0,0,0,0.8);
}

.modal-btn-blue:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #2d1b0d, 0 4px 8px rgba(0,0,0,0.6);
}

.modal-btn-blue span {
    position: relative;
    z-index: 1;
}

#tutorial-choice-modal .modal-buttons {
    flex-wrap: wrap;
}

#tutorial-choice-modal .tutorial-choice-ask {
    flex-basis: 100%;
}

.modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.modal-avatar {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 10px;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

.modal-title {
    margin: 0;
    color: #fff0c7;
    font-size: var(--fs-h3);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.55);
}

.modal-details {
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.modal-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(168, 122, 67, 0.3);
}

.modal-item-image-wrap {
    position: relative;
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    border-radius: 6px;
    background: linear-gradient(135deg, #5b3a22 0%, #4b301c 100%);
    border: 3px solid #2a1a11;
    box-shadow: 0 3px 8px rgba(0,0,0,0.7), inset 0 0 6px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    box-sizing: border-box;
}

.modal-item-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}

.modal-water-badge,
.modal-earth-badge,
.modal-sand-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.modal-water-badge svg,
.modal-earth-badge svg,
.modal-sand-badge svg {
    display: block;
    width: 14px;
    height: 14px;
}

.modal-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.modal-item-name {
    color: #fff0c7;
    font-size: var(--fs-base);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.55);
}

.modal-item-quantity {
    color: #c9b89e;
    font-size: var(--fs-small);
}

.modal-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-currency-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.4));
}

.modal-price-value {
    color: #c0c0c0;
    font-size: var(--fs-h2);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.55);
}

.modal-price-value.florins {
    color: #ffd277;
}

.modal-preview-image {
    display: block;
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    margin: auto;
}

#stall-preview-image {
    transform: translateY(15%);
}

.modal-description {
    color: #fff0c7;
    font-size: var(--fs-small);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(168, 122, 67, 0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.55);
}

#weather-warning-modal .weather-warning-title {
    padding-top: 16px;
}


@keyframes overlayFadeIn {
    from { background: rgba(0, 0, 0, 0); }
    to { background: rgba(0, 0, 0, 0.75); }
}

@keyframes overlayFadeOut {
    from { background: rgba(0, 0, 0, 0.75); }
    to { background: rgba(0, 0, 0, 0); }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.97);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes modalFadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.97);
    }
}

.modal-toggle {
    position: relative;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.modal-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.modal-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: linear-gradient(145deg, #2e1e13, #3c281c);
    border: 2px solid #2c1b10;
    border-radius: 26px;
    transition: background 0.3s, border-color 0.3s;
}

.modal-toggle-slider::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(145deg, #7a6550, #5a4530);
    border-radius: 50%;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.modal-toggle input:checked + .modal-toggle-slider {
    background: linear-gradient(145deg, #5a6b35, #4a5a2d);
    border-color: #7d8f4a;
}

.modal-toggle input:checked + .modal-toggle-slider::before {
    transform: translateY(-50%) translateX(24px);
    background: linear-gradient(145deg, #7d8f4a, #6b7c3f);
}

.modal-discard-section {
    margin-top: 12px;
    border-top: 1px solid rgba(168, 122, 67, 0.3);
    padding-top: 12px;
}

.modal-discard-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.modal-discard-input {
    flex: 1;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 2px solid #a87a43;
    border-radius: 6px;
    color: #fff0c7;
    font-family: inherit;
    font-size: var(--fs-base);
    text-align: center;
    -moz-appearance: textfield;
}

.modal-discard-input::-webkit-outer-spin-button,
.modal-discard-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.modal-discard-input:focus {
    outline: none;
    border-color: #c8943a;
}

.modal-discard-row .modal-btn {
    flex: 0 0 auto;
    padding-top: 10px;
    padding-bottom: 10px;
}

.modal-discard-arrow {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.35);
    border: 2px solid #a87a43;
    border-radius: 6px;
    color: #fff0c7;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s;
}

.modal-discard-arrow:hover {
    background: rgba(168, 122, 67, 0.25);
    border-color: #c8943a;
}

.modal-discard-arrow:active {
    background: rgba(168, 122, 67, 0.4);
}

@media (max-width: 600px) {
    .modal-content {
        padding: 20px;
    }

    .modal-avatar {
        width: 56px;
        height: 56px;
    }

    .modal-title {
        font-size: var(--fs-base);
    }
}

.login-streak-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 0 14px;
}

.login-streak-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(145deg, #2e1e13, #3c281c);
    border: 2px solid rgba(168, 122, 67, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-size: var(--fs-small);
    color: #7a6550;
    font-weight: 700;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    flex-shrink: 0;
}

.login-streak-dot--done {
    background-color: #6b7c3f;
    border-color: #7d8f4a;
    color: #fff;
}

.login-streak-dot--active {
    background-color: #6b7c3f;
    border-color: #7d8f4a;
    color: #fff;
    box-shadow: 0 0 10px rgba(125, 143, 74, 0.6);
}

.login-streak-dot--special {
    border-color: rgba(201, 151, 60, 0.5);
    color: #9a7840;
}

.login-streak-dot--special.login-streak-dot--active {
    background-color: #b8860b;
    border-color: #c9973c;
    color: #fff;
    box-shadow: 0 0 12px rgba(184, 134, 11, 0.7);
}

.login-streak-dot--special.login-streak-dot--done {
    background-color: #b8860b;
    border-color: #c9973c;
    color: #fff;
}

.login-streak-subtitle {
    font-family: var(--font-main);
    font-size: var(--fs-base);
    color: #c9b89e;
    text-align: center;
    margin: 0 0 18px;
}

.login-streak-subtitle--tight {
    margin-bottom: 8px;
}

.login-streak-day-number {
    margin-bottom: 8px;
}


.login-streak-reward-silver {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(26, 14, 5, 0.5);
    border: 1px solid rgba(168, 122, 67, 0.35);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.login-streak-reward-deco {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(26, 14, 5, 0.5);
    border: 1px solid rgba(168, 122, 67, 0.35);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.login-streak-deco-wrap {
    width: 80px;
    height: 80px;
}

.login-streak-deco-name {
    margin: 0;
    text-align: center;
}



@media (max-width: 400px) {
    .login-streak-dot {
        width: 28px;
        height: 28px;
        font-size: 10px;
        gap: 6px;
    }

    .login-streak-progress {
        gap: 5px;
    }
}