.mant-ejecucion-layout {
    max-width: 1100px;
    margin: 30px auto;
    font-family: Arial, sans-serif;
    color: #333;
    font-size: 14px;
}


.mant-page-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #004b54;
}

.mant-card {
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.mant-card-header {
    padding: 5px 5px;
    border-bottom: 1px solid #ddd;
    background: #f5f7f8;
}

.mant-card-header h2 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #004b54;
}



.mant-help {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.mant-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

.mant-field {
    flex: 1 1 30%;
    min-width: 220px;
}

.mant-field-full {
    flex: 1 1 100%;
}

.mant-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 3px;
}

.mant-field input[type="text"],
.mant-field input[type="date"],
.mant-field input[type="number"],
.mant-field select,
.mant-field textarea {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 2px;
    box-sizing: border-box;
    font-size: 13px;
}

.mant-field textarea {
    resize: vertical;
}

.mant-field input[readonly],
.mant-field input[disabled] {
    background: #f3f3f3;
    color: #555;
}

.mant-field-file input[type="file"] {
    padding: 4px 0;
    font-size: 13px;
}

.mant-subsection {
    border-top: 1px dashed #ddd;
    padding-top: 10px;
    margin-top: 10px;
}

.mant-subsection h3 {
    margin: 0 0 8px;
    font-size: 14px;
    color: #005f63;
}

.mant-row-checkbox .mant-field label {
    font-weight: normal;
}

.mant-permiso-resumen {
    border: 1px dashed #cfd8dc;
    padding: 10px;
    margin-bottom: 5px;
    background: #fafafa;
}

.mant-row-actions {
    justify-content: flex-end;
    margin-top: 5px;
}

.mant-btn-primary,
.mant-btn-secondary {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 3px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.mant-btn-primary {
    background-color: #0073aa;
    border-color: #0073aa;
    color: #fff;
}

.mant-btn-primary:hover {
    background-color: #005f8a;
}

.mant-btn-secondary {
    background-color: #444;
    border-color: #444;
    color: #fff;
}

.mant-btn-secondary:hover {
    background-color: #333;
}

.mant-section-actions {
    text-align: right;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .mant-ejecucion-layout {
        margin: 15px;
    }

    .mant-row {
        flex-direction: column;
    }

    .mant-field {
        min-width: 100%;
    }
}
