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

#menu {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    background-color: #f4f4f4;
}

#menu a {
    font-weight: bold;
    color: #333;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#menu a:hover {
    background-color: #ddd;
}

#details {
    margin-top: 20px;
    padding: 10px;
    background-color: #e9e9e9;
    border-radius: 5px;
}

#affiliate-disclosure {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background-color: #f9f9f9;
    border-top: 1px solid #ccc;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}
