﻿.captchaStyle {
    border: 1px solid gray;
    padding: 10px;
    border-radius: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px 24px;
    align-items: start;
}

.form-row {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: 600;
    margin-bottom: 4px;
}

input, select, .rich-editor {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.rich-editor {
    min-height: 60px;
    background: #fff;
}

.hint {
    color: #666;
    font-size: 12px;
    margin-top: 4px;
}

.actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-secondary {
    background: #e5e7eb;
    color: #111827;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.swal2-styled {
    border-radius: var(--bs-border-radius-pill) !important;
    background: #2563eb !important;
    color: white !important;
    border: none !important;
    /*padding: 10px 16px !important;*/
}

.show-section {
    display: block;
}

.hide-section {
    display: none;
}

#statusDiv{
    height: 60vh;
}