.otp-digit {
    width: 56px;
    height: 56px;
    text-align: center;
    font-size: 1.5rem;
    padding: 0;
}

.fw-semibold {
    font-weight: 600;
}

.dz-message.dz-clickable {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.affily-logo {
    width: 44px;
    height: 44px;
    background: #6ee7ef;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.upload-box {
    border: 2px dashed #d1d5db;
    border-radius: 16px;
    background: #fafbfc;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
}

.upload-box:hover {
    border-color: #6ee7ef;
}

.upload-icon {
    background: #6ee7ef;
    color: #fff;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.select-files-btn {
    background: #6ee7ef;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 8px 32px;
    font-size: 1.2rem;
    margin-top: 18px;
    margin-bottom: 8px;
    transition: background 0.2s;
}

.select-files-btn:hover {
    background: #4fd1d9;
    color: #fff;
}

.side-card {
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 32px 24px;
    background: #fff;
}

.form-check-input:checked {
    background-color: #6ee7ef;
    border-color: #6ee7ef;
}

.generate-btn {
    background: #6ee7ef;
    color: #fff;
    border: none;
    border-radius: 10px;
    width: 100%;
    font-size: 1.2rem;
    padding: 10px 0;
    margin-top: 18px;
    margin-bottom: 8px;
    transition: background 0.2s;
}

.generate-btn:disabled {
    background: #b2eaf1;
    color: #fff;
}

.note {
    color: #6b7280;
    font-size: 0.98rem;
}


@media (max-width: 991.98px) {
    .side-card {
        margin-top: 32px;
    }
}

.option-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 7px 18px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: #fff;
    position: relative;
}

.option-card.selected {
    border-color: #6ee7ef;
    background: #f0fdff;
}

.option-icon {
    font-size: 1.7rem;
    color: #6ee7ef;
    margin-right: 14px;
}

.option-radio {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    accent-color: #6ee7ef;
}

.custom-input {
    border-radius: 10px;
    border: 1.5px solid #e5e7eb;
    margin-bottom: 14px;
    font-size: .875rem;
    padding: 10px 14px;
}

.form-select {
    font-size: .875rem !important;
}

.fw-semibold {
    font-weight: 500;
}

.custom-input:focus {
    border-color: #6ee7ef;
    box-shadow: 0 0 0 0.1rem #6ee7ef33;
}

.custom-textarea {
    border-radius: 10px;
    border: 1.5px solid #e5e7eb;
    font-size: .875rem;
    padding: 10px 14px;
    resize: none;
}

.custom-textarea:focus {
    border-color: #6ee7ef;
    box-shadow: 0 0 0 0.1rem #6ee7ef33;
}

.send-btn {
    background: #6ee7ef;
    color: #fff;
    border: none;
    border-radius: 12px;
    width: 100%;
    font-size: 1.125rem;
    padding: 7px 0;
    margin-top: 18px;
    margin-bottom: 8px;
    transition: background 0.2s;
}

.send-btn.active {
    background: #6ee7ef;
}

#accessSettingsBtn {
    padding: 0px 6px !important;
}

#accessSettingsBtnSec {
    margin-top: 30px;
}

.form-check-input:checked[type=radio] {
    background-image: none;
}

.form-control {
    height: 40px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* File Size Limit Modal Styles */
.file-size-limit-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.18);
    align-items: center;
    justify-content: center;
}

.file-size-limit-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    padding: 38px 32px;
    max-width: 500px;
    width: 90vw;
    text-align: center;
    position: relative;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.file-size-limit-header {
    margin-bottom: 20px;
}

.file-size-limit-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #222;
}

.file-size-limit-stats {
    margin-bottom: 16px;
}

.file-size-limit-stats-text {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

.file-size-limit-message {
    color: #222;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.4;
}

.file-size-limit-benefits {
    margin-bottom: 28px;
    width: 100%;
}

.file-size-limit-benefits-title {
    color: #222;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: left;
}

.file-size-limit-benefits-list {
    text-align: left;
}

.file-size-limit-benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}

.file-size-limit-benefit-icon {
    font-size: 1.1rem;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.file-size-limit-benefit-text {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.4;
}

.file-size-limit-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 20px;
}

.file-size-limit-btn {
    width: 100%;
    padding: 14px 0;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.file-size-limit-btn-primary {
    background: #6ee7ef;
    color: #fff;
}

.file-size-limit-btn-primary:hover {
    background: #4fd1d9;
}

.file-size-limit-btn-secondary {
    background: #fff;
    color: #6ee7ef;
    border: 1.5px solid #6ee7ef;
}

.file-size-limit-btn-secondary:hover {
    background: #f0fdff;
}

.file-size-limit-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.file-size-limit-footer-link {
    color: #6ee7ef;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.file-size-limit-footer-link:hover {
    color: #4fd1d9;
    text-decoration: underline;
}

.file-size-limit-footer-separator {
    color: #d1d5db;
    font-size: 0.9rem;
}

.radio-card-group {
    display: flex;
    gap: 1rem;
    overflow-y: auto;
    padding-bottom: 15px !important;
    min-height: 120px;
    overflow: visible;
}

.radio-card {
    display: inline-block;
    border: 2px solid #6DD8E4;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.radio-card input[type="radio"] {
    display: none;
}

.radio-card .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.radio-card .label-text {
    display: block;
    font-weight: 600;
}

.radio-card .card-content {
    padding: 16px 10px;
    min-width: 100px;

    display: flex;
    align-items: center;
    gap: 5px;
}

.radio-card input[type="radio"]:checked+.card-content {
    background-color: #6DD8E4;
    color: #fff;
    border-color: #0b132b;
    border-radius: 5px;
}
.radio-card .label-text {
    margin-top: 0px !important;
}

.radio-card.hero input[type="radio"]:checked+.card-content {
    border-color: #f75c03;
}

.radio-card.product input[type="radio"]:checked+.card-content {
    border-color: #00c2c7;
}

.transfer-folder-button {
    position: relative;
    right: 0;
    top: 0;
}

.btn-default {
    background: #eeeeee;
    color: #222;
    border: 1px solid #eeeeee;
}

.folders-sticky-container {
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    background: #fff;
}

#sendBtn:disabled {
    background-color: #6ee7ef !important;
    color: white;
}

.elipse-text {
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
    word-break: break-word;
    width: 100%;
}

@media (max-width: 430px) { 
    .transfer-folder-title {
        display: block !important;
    }
    .transfer-btns {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    .transfer-btns button {
        font-size: 14px;
    }
    .transfer-btns svg {
        width: 16px;
        height: 16px;
    }
}

.branded-portal-modal-dialog {
    max-width: 1140px;
}

.branded-portal-modal-content {
    border-radius: 24px;
    border: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.branded-portal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #888;
    opacity: 1;
}

.branded-portal-close-btn:hover {
    color: #555;
}

.branded-portal-modal-body {
    padding: 0;
}

.branded-portal-left-section {
    background: #ffffff;
    padding: 60px 50px;
}

.branded-portal-content {
    max-width: 520px;
}

.branded-portal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #69d9e81a;
    color: #69d9e8;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.branded-portal-sparkle-icon {
    width: 16px;
    height: 16px;
    stroke: #80DEEA;
}

.branded-portal-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.branded-portal-description {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 32px;
}

.branded-portal-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 32px;
}

.branded-portal-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.branded-portal-feature-icon {
    width: 12px;
    height: 12px;
    min-width: 12px;
    border-radius: 50%;
    background: #80DEEA;
    /* margin-top: 5px; */
}
.branded-portal-feature-icon-par {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: #69d9e81a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branded-portal-feature-text {
    flex: 1;
}

.branded-portal-feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    line-height: 15px;
}

.branded-portal-feature-desc {
    font-size: 0.875rem;
    color: #6b7280;
}

.branded-portal-primary-btn {
    width: 100%;
    background: #212529;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-bottom: 12px;
}

.branded-portal-primary-btn:hover {
    background: #000000;
}

.branded-portal-secondary-link {
    width: 100%;
    background: none;
    border: none;
    color: #6C757D;
    font-size: 0.95rem;
    padding: 8px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.branded-portal-secondary-link:hover {
    color: #495057;
}

.branded-portal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
    font-size: 0.875rem;
    color: #ADB5BD;
}

.branded-portal-sparkle-icon-small {
    width: 14px;
    height: 14px;
    stroke: #80DEEA;
}

.branded-portal-right-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e5f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.branded-portal-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branded-portal-preview-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}
.sortable-folders .radio-card .label-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 96%;
}
/* Responsive Design */
@media (max-width: 991.98px) {
    .branded-portal-left-section {
        padding: 40px 30px;
    }

    .branded-portal-heading {
        font-size: 2rem;
    }

    .branded-portal-content {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .branded-portal-left-section {
        padding: 30px 24px;
    }

    .branded-portal-heading {
        font-size: 1.75rem;
    }

    .branded-portal-description {
        font-size: 0.95rem;
    }

    .branded-portal-features {
        gap: 16px;
        margin-bottom: 28px;
    }

    .branded-portal-close-btn {
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 575.98px) {
    .branded-portal-left-section {
        padding: 24px 20px;
    }

    .branded-portal-heading {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .branded-portal-description {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .branded-portal-badge {
        font-size: 0.8rem;
        padding: 5px 12px;
        margin-bottom: 18px;
    }

    .branded-portal-features {
        gap: 14px;
        margin-bottom: 24px;
    }

    .branded-portal-feature-title {
        font-size: 0.95rem;
    }

    .branded-portal-feature-desc {
        font-size: 0.8rem;
    }

    .branded-portal-primary-btn {
        font-size: 0.95rem;
        padding: 12px 20px;
    }

    .branded-portal-secondary-link {
        font-size: 0.9rem;
    }

    .branded-portal-footer {
        margin-top: 24px;
        font-size: 0.8rem;
    }
}