/* MyVeto - Styles personnalisés */

body {
    background-color: #f4f6f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.4rem;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
}

.stat-card {
    padding: 1.5rem;
}

.stat-card .stat-icon {
    font-size: 2.5rem;
    opacity: 0.7;
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: bold;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.table th {
    border-top: none;
    font-weight: 600;
    color: #495057;
}

.btn-action {
    padding: 0.25rem 0.5rem;
    font-size: 0.85rem;
}

.search-box {
    max-width: 300px;
}

.badge-espece {
    font-size: 0.75rem;
}

.login-container {
    max-width: 400px;
    margin: 100px auto;
}

.login-logo {
    font-size: 3rem;
    color: #0d6efd;
}

.animal-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.animal-avatar.chien { background-color: #0d6efd; }
.animal-avatar.chat { background-color: #6f42c1; }
.animal-avatar.nac { background-color: #20c997; }
.animal-avatar.cheval { background-color: #fd7e14; }
.animal-avatar.bovin { background-color: #198754; }
.animal-avatar.autre { background-color: #6c757d; }

.flash-message {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 1050;
    min-width: 300px;
}
