body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 20px;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #d81b60;
}

h1::before {
    content: "🐾 ";
}

h1::after {
    content: " 🐾";
}

.card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin: 25px 0;
    border: 1px solid #ffe0e0;
}

#photo-praline {
    max-width: 100%;
    border-radius: 15px;
    margin: 15px auto;
    display: block;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.available {
    color: #4caf50;
    font-weight: bold;
    font-size: 1.5em;
}

.unavailable {
    color: #f44336;
    font-weight: bold;
    font-size: 1.5em;
}

#liste-historique {
    list-style: none;
    padding: 0;
    text-align: left;
}

#liste-historique li {
    padding: 12px;
    border-bottom: 1px solid #ffe0e0;
    background-color: rgba(255, 235, 238, 0.3);
    margin: 5px 0;
    border-radius: 8px;
}

a {
    color: #d81b60;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.telegram-section {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background-color: #f0f8ff;
    border-radius: 15px;
    border: 1px solid #e1f0ff;
}

.telegram-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.telegram-button {
    display: inline-block;
    background-color: #0088cc;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.telegram-button:hover {
    background-color: #0077b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.note {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
}