.mkr-projeto-single, .mkr-projeto-form {
    max-width: 600px;
    margin: 30px auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.mkr-projeto-single h2, .mkr-projeto-form h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #333;
    word-break: break-word;
}

.mkr-projeto-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.mkr-projeto-form input[type="text"],
.mkr-projeto-form textarea {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

.mkr-botao {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mkr-botao:hover {
    background-color: #005177;
}

.mkr-botao.mkr-danger {
    background-color: #dc3545;
}

.mkr-projetos-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.mkr-projeto-card {
    width: 250px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mkr-projeto-card h3 {
    font-size: 1.1rem;
    margin: 0 0 10px;
    color: #333;
    word-break: break-word;
    min-height: 2.6em;
}

.mkr-projeto-card p {
    flex-grow: 1;
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: #555;
}

.mkr-projeto-card a {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
}

.mkr-projeto-card a:hover {
    text-decoration: underline;
}

/* ✅ Flash messages */
.mkr-flash-message {
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 6px;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.mkr-flash-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mkr-flash-message.danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.mkr-projeto-card a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.mkr-projeto-card a:hover {
    background-color: #005177;
}

