body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.top-bar {
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%;
    border-bottom: 1px solid #ddd;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.vote-container {
    text-align: center;
    padding: 20px;
}

.vote-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 5px;
}

.vote-button:disabled {
    background-color: #888;
}

.cats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
    justify-items: center;
    padding: 20px;
}

.cat img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
}

.cat p {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.footer {
    background-color: #f5f5f5;
    padding: 40px 5%;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-logo img {
    height: 60px;
    display: block;
    margin-bottom: 10px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    text-decoration: none;
    color: black;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}
