/* General Styles */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #fefefe;
    margin: 0;
    padding: 0;
}

/* Logo */
.logo-container {
    text-align: center;
    padding: 20px;
}
.logo-container img {
    width: 100%;
    max-width: 150px;
    height: auto;
}

/* Header */
header {
    background: #ffcc80;
    color: #333;
    padding: 15px;
    font-size: 28px;
    font-weight: bold;
}

/* Hashtags */
.hashtags {
    display: inline-block;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 16px;
    color: #333;
}
.hashtags span {
    margin: 5px;
    background: green;
    border-radius: 5px;
    transition: 0.3s;
}
.hashtags span:hover {
    background: #ffeb3b;
}

/* Navigation Menu */
.container {
    margin-top: 30px;
}
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.menu a {
    margin: 5px;
    background: #ffab40;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 18px;
}
.menu a:hover {
    background: #ff9100;
}

/* Business Section */
.business-section {
    background: #fff3e0;
    padding: 20px;
    margin-top: 30px;
    font-size: 18px;
}

/* Header Buttons */
.header-container {
    display: inline-table;
    flex-direction: row;
    align-items: center;
}

.header-button {
    margin: 5px;
    background-color: #4CAF50;
    color: white;
    border-radius: 15px;
    padding: 10px 15px;
    cursor: pointer;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    border: none;
    transition: background-color 0.3s;
}
.header-button:hover {
    background-color: #45a049;
}

/* User Email Button */
.user-email {
    font-size: 10px;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    box-shadow: 2px 2px 5px gray;
    transition: 0.3s;
}
.user-email:hover {
    background-color: #0056b3;
}

/* Logout Button */
.logout-button {
    background-color: red;
    color: white;
    border-radius: 15px;
    padding: 5px 10px;
    cursor: pointer;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    border: none;
    margin-left: auto;
}
.logout-button:hover {
    background-color: darkred;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 20px;
}
footer div {
    margin-top: 10px;
    padding: 10px;
}
footer a {
    color: white;
    text-decoration: none;
    margin: 5px;
    font-size: 16px;
}
footer a:hover {
    text-decoration: underline;
}

/* Mobile-Friendly Adjustments */
@media (max-width: 600px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }
    .menu a {
        width: 80%;
        padding: 20px;
        font-size: 20px;
    }
    .hashtags {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 14px;
    }
    .logo-container img {
        max-width: 100px;
    }
}
