body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #f5f5f5;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #1a3c34; /* Cor verde escura que remete a profissionalismo e imóveis */
}

.navbar-brand img {
    height: 40px;
}

.container {
    max-width: 1200px;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #1a3c34;
    border-color: #1a3c34;
}

.btn-primary:hover {
    background-color: #2e5e56;
    border-color: #2e5e56;
}

.table {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

footer {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background-color: #1a3c34;
    color: white;
    font-size: 0.9rem;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    .container {
        padding: 15px;
    }
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}