.actpay-hide{
    display:none !important;
}

.actpay-container {
    background: var(--bg-card);
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
    padding: 30px;
    margin: 0 auto;
}

.actpay-header {
    text-align: center;
    margin-bottom: 24px;
}

.actpay-header h1 {
    font-size: 24px;
    color: var(--text-main);
    margin-bottom: 8px;
}

.actpay-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.actpay-section-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 600;
}

.actpay-bank-details {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.actpay-bank-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 15px;
}

.actpay-bank-row:last-child {
    margin-bottom: 0;
}

.actpay-bank-label {
    color: var(--text-muted);
}

.actpay-bank-value {
    font-weight: 600;
}

.actpay-upload-section {
    margin-bottom: 24px;
}

.actpay-upload-dropzone {
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s;
    position: relative;
}

.actpay-upload-dropzone:hover {
    border-color: var(--primary);
}

.actpay-upload-dropzone input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.actpay-upload-icon {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.actpay-preview-container {
    display: none;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
    background: #fff;
    margin-top: 12px;
}

.actpay-preview-image {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    border-radius: 6px;
    background: #f9fafb;
}

.actpay-file-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 14px;
}

.actpay-file-name {
    color: var(--text-main);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
}

.actpay-preview-actions {
    display: flex;
    gap: 8px;
}

.actpay-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color .2s;
}

.actpay-btn-primary {
    background-color: var(--primary);
    color: #fff;
    margin-bottom: 12px;
}

.actpay-btn-primary:hover {
    background-color: var(--primary-hover);
}

.actpay-btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.actpay-btn-secondary:hover {
    background-color: #f5f3ff;
}

.actpay-btn-danger {
    background-color: transparent;
    color: var(--danger);
    border: 1px solid var(--danger);
    padding: 6px 12px;
    font-size: 13px;
}

.actpay-btn-danger:hover {
    background-color: #fef2f2;
}

.actpay-btn-action {
    background-color: #f3f4f6;
    color: var(--text-main);
    border: 1px solid #d1d5db;
    padding: 6px 12px;
    font-size: 13px;
    position: relative;
}

.actpay-btn-action input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.actpay-btn-action:hover {
    background-color: #e5e7eb;
}

.actpay-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: var(--text-muted);
    font-size: 14px;
}

.actpay-divider::before,
.actpay-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.actpay-divider:not(:empty)::before {
    margin-right: .5em;
}

.actpay-divider:not(:empty)::after {
    margin-left: .5em;
}

.actpay-hidden {
    display: none !important;
}