.ca-status-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.ca-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    background: rgb(0 0 0 / 21%);
    border: 1px solid #6b7280;
    border-radius: 10px;
    width: fit-content;
}


.ca-status-dot {
    width: 12px;
    height: 12px;
    min-width: 12px;
    border-radius: 50%;
}

.ca-status-message {
    margin: 0;
    font-size: 0.875rem;
    color: #a0a4bb;
    text-align: center;
    max-width: 480px;
    align-self: center;
    line-height: 1.55;
}

.ca-status-label {
    color: #d6dbec;
    font-size: 0.95rem;
}

.ca-status-label strong {
    color: #fff;
}

.ca-status-dot.ca-status-not-started      { background: #6b7280; }
.ca-status-dot.ca-status-pending          { background: #f5c842; }
.ca-status-dot.ca-status-content-approved { background: #f5c842; }
.ca-status-dot.ca-status-content-rejected { background: #f87171; }
.ca-status-dot.ca-status-id-approved      { background: #a6e3a1; }
.ca-status-dot.ca-status-id-rejected      { background: #f87171; }

/* Didit ID verification statuses */
.ca-status-dot.ca-status-in-progress  { background: #f5c842; }
.ca-status-dot.ca-status-in-review    { background: #f5c842; }
.ca-status-dot.ca-status-resubmitted  { background: #f5c842; }
.ca-status-dot.ca-status-declined     { background: #f87171; }
.ca-status-dot.ca-status-expired      { background: #6b7280; }
.ca-status-dot.ca-status-abandoned    { background: #6b7280; }
.ca-status-dot.ca-status-kyc-expired  { background: #6b7280; }

.ca-status:has(.ca-status-pending),
.ca-status:has(.ca-status-content-approved),
.ca-status:has(.ca-status-in-progress),
.ca-status:has(.ca-status-in-review),
.ca-status:has(.ca-status-resubmitted)  { border-color: #f5c842; }
.ca-status:has(.ca-status-id-approved)  { border-color: #a6e3a1; }
.ca-status:has(.ca-status-content-rejected),
.ca-status:has(.ca-status-id-rejected),
.ca-status:has(.ca-status-declined)     { border-color: #f87171; }

.ca-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ca-card {
    background-color: #2b2c3c;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #585b70;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ca-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ca-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 16px;
}

.ca-step-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    margin-top: 6px;
    border-radius: 50%;
    background: rgb(107, 174, 255);
}

.ca-step-dot.completed {
    background: #a6e3a1;
}

.ca-step-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ca-step-title {
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

.ca-step-desc {
    color: #d6dbec;
    margin: 0;
}

.ca-step-desc strong {
    color: #fff;
    font-weight: 500;
}

.ca-links-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.ca-links-form input {
    width: 100%;
}

.ca-step-notice {
    margin: 0;
    padding: 8px 12px;
    font-size: 0.9rem;
    color: #f5c842;
    background: rgba(245, 200, 66, 0.1);
    border: 1px solid rgba(245, 200, 66, 0.4);
    border-radius: 6px;
}

.ca-links-error {
    margin: 0;
    color: rgb(255, 100, 100);
    font-size: 0.9rem;
}

.ca-links-success {
    margin: 0;
    color: #a6e3a1;
    font-size: 0.9rem;
}

.ca-verify-file-input {
    display: none;
}

.ca-verify-choose-btn {
    background: #fff;
    color: rgb(7, 7, 9);
    transform: none !important;
}

.ca-verify-caption {
    margin: 0;
    font-size: 0.85rem;
    color: #c6cde3;
    text-align: center;
}

.ca-verify-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: #3b82f6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.ca-verify-preview {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    aspect-ratio: 1;
    background: rgb(30, 31, 43);
    border: 2px solid rgb(7, 7, 9);
    border-radius: 8px;
    overflow: hidden;
}

.ca-verify-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
