#aluguel-mp-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f9f9f9;
    font-family: sans-serif;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#aluguel-mp-container .form-group {
    margin-bottom: 15px;
}

#aluguel-mp-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

#aluguel-mp-container input[type="text"],
#aluguel-mp-container input[type="email"],
#aluguel-mp-container input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

#aluguel-mp-container #btn-reservar {
    width: 100%;
    padding: 12px;
    background-color: #009ee3;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

#aluguel-mp-container #btn-reservar:hover {
    background-color: #007eb5;
}

#aluguel-mp-container #btn-reservar:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#resumo-reserva {
    background: #eef9ff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    border-left: 4px solid #009ee3;
}

#resumo-reserva p {
    margin: 5px 0;
}

#msg-reserva {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    display: none;
}

.msg-error {
    background: #ffebee;
    color: #c62828;
    display: block !important;
}

.msg-success {
    background: #e8f5e9;
    color: #2e7d32;
    display: block !important;
}
