﻿/* Button styles */
.top-right-buttons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
}

.button {
    background-color: #3498db; /* Blue color */
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; /* Remove underline */
    display: inline-block;
}

    .button:hover {
        background-color: #2980b9;
        color: white;
    }

.product-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.product-item {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

    .product-item a {
        color: #007bff;
        text-decoration: none;
    }

        .product-item a:hover {
            text-decoration: underline;
        }

h2 {
    color: #333;
}
