/* Estilos Básicos para o Sistema de Indicação */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Alinhar ao topo, não ao centro da tela */
    min-height: 100vh;
}

.container {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin-top: 50px;
}

h1, h2 {
    color: #007bff;
    text-align: center;
}

p {
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"], 
input[type="password"],
textarea,
select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box; /* Garante que o padding não aumente o tamanho total */
}

input[type="submit"], .btn {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
    text-decoration: none; /* Para links estilizados como botões */
    display: block;
}

input[type="submit"]:hover, .btn:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-sair {
    background-color: #dc3545;
}

.btn-sair:hover {
    background-color: #c82333;
}

hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0;
}


/* Estilos de Status (Para a tabela minhas_indicacoes.php) */
.status-Disponível { color: orange; }
.status-Indisponível { color: red; }
.status-Alugado { color: green; }
table { width: 100%; border-collapse: collapse; margin-top: 20px; }
th, td { border: 1px solid #ddd; padding: 10px; text-align: left; }
th { background-color: #f2f2f2; }