/* Formulário */
.mkr-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.mkr-form-container h2 {
    margin-top: 0;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    min-height: 100px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-actions {
    margin-top: 30px;
    text-align: right;
}

.btn-primary, .btn-secondary {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: #0073aa;
    color: white;
}

.btn-primary:hover {
    background-color: #005d8c;
}

.btn-secondary {
    background-color: #ddd;
    color: #333;
    margin-right: 10px;
}

.btn-secondary:hover {
    background-color: #ccc;
}

/* Lista de Trilhas */
.mkr-trilhas-lista {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.trilhas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.trilha-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    transition: transform 0.3s ease;
}

.trilha-card:hover {
    transform: translateY(-5px);
}

.trilha-card h3 {
    margin-top: 0;
    color: #0073aa;
}

.trilha-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.btn-view, .btn-edit, .btn-delete {
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

.btn-view {
    background-color: #0073aa;
    color: white;
}

.btn-view:hover {
    background-color: #005d8c;
}

.btn-edit {
    background-color: #ffb900;
    color: #333;
}

.btn-edit:hover {
    background-color: #e6a800;
}

.btn-delete {
    background-color: #dc3232;
    color: white;
}

.btn-delete:hover {
    background-color: #c12c2c;
}

.add-new-container {
    margin-top: 30px;
    text-align: right;
}

/* Página Individual */
.mkr-trilha-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.trilha-header h2 {
    margin-top: 0;
    color: #0073aa;
}

.trilha-meta {
    color: #666;
    margin-bottom: 20px;
}

.trilha-section {
    margin-bottom: 30px;
}

.trilha-section h3 {
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    color: #333;
}

.btn-download {
    display: inline-block;
    padding: 8px 15px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.btn-download:hover {
    background-color: #005d8c;
}

.trilha-actions {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.btn-back {
    padding: 10px 20px;
    background-color: #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
}

.btn-back:hover {
    background-color: #ccc;
}