body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    background-color: #343a40;
}
.lead {
    font-size: 1rem;
    font-style: italic;
}
.tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    margin-right: 0.5rem;
    font-size: 0.875rem;
    color: white;
}

.changelog-entry {
    border-left: 4px solid #007bff;
    padding-left: 1rem;
    margin-bottom: 2rem;
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h1 {
    color: #333;
    font-size: 24px;
}

.footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f1f1f1;
    border-top: 1px solid #e0e0e0;
} 
h1 {
    font-size: 1.5rem;
}
h2 {
    font-size: 1.2rem;
}
h3 {
    font-size: 1rem;
}
.changelog-title {
    font-size: 1.5rem;
    font-weight: 700; 
}

/* Styles pour les réactions */
.reactions-container {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.emoji-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.emoji-btn {
    font-size: 1.5rem;
    line-height: 1;
    padding: 10px;
    text-align: center;
}

.reaction-btn {
    transition: all 0.2s;
    border-radius: 20px;
    padding: 5px 10px;
}

.reaction-btn:hover {
    transform: scale(1.05);
    background-color: #f0f0f0;
}

.reaction-count {
    font-size: 0.8em;
    color: #666;
    font-weight: bold;
    margin-left: 5px;
}

/* Styles pour indiquer qu'une news est importante */
.important-news {
    position: relative;
}

.important-news::before {
    content: "★";
    color: #ff9800;
    position: absolute;
    left: -20px;
    top: 0;
    font-size: 1.2em;
}