.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;
}

.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: .5rem;
    min-width: 100px;
}

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

.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: absolute;
    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;
}
