﻿.editor-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #ffffff;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


.editor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}


@media (max-width: 768px) {
    .editor-grid {
        grid-template-columns: 1fr;
    }

    .editor-container {
        padding: 10px;
    }
}


.btn {
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
}

.btn-primary {
    background: #0b74de;
    color: white;
    border: none;
}

.btn-success {
    background: #28a745;
    color: white;
    border: none;
}

.btn-danger {
    background: #dc3545;
    color: white;
    border: none;
}


.input-error {
    border-color: #dc3545 !important;
}

.validation-msg {
    color: #dc3545;
    font-size: 13px;
    margin-top: -6px;
    margin-bottom: 8px;
}

.table-edit {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}

    .table-edit th, .table-edit td {
        border-bottom: 1px solid #ddd;
        padding: 6px;
    }

    .table-edit th {
        background: #f0f0f0;
    }
