﻿/* styles.css */

body {
    background-color: #2c2c2e;
    font-family: Arial, sans-serif;
    color: #ffffff;
}

.logo {
    font-size: 24px;
    color: #b98aff;
    text-decoration: none;
}

.search-bar {
    width: 20%;
    margin-left: 10px;
    max-width: 300px;
    flex-shrink: 0;
    background-color: #444; /* Add this line to set the background color */
    color: #ffffff; /* Add this line to set the text color */
    border: 1px solid #666; /* Add this line to set a darker border */
}


.upgrade-btn {
    margin-left: 20px;
    padding: 5px 15px;
    background-color: #ff9900;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .upgrade-btn:hover {
        background-color: #ffcc00;
    }


a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: #0077cc;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

.account-menu {
    position: relative;
}

.user-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #2c2c2e;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 10px;
    z-index: 1;
}

.user-menu-link {
    display: block;
    text-decoration: none;
    color: #ffffff;
    padding: 5px;
    white-space: nowrap;
}

    .user-menu-link:hover {
        color: #b98aff;
    }

.account-icon:hover + .user-menu,
.user-menu:hover {
    display: block;
}

.user-menu button {
    background-color: #444; /* Add this line to set the background color */
    color: #ffffff; /* Add this line to set the text color */
    border: none; /* Add this line to remove the border */
    cursor: pointer; /* Add this line to set the cursor to pointer on hover */
    padding: 5px; /* Add this line to add padding around the text */
    display: block; /* Add this line to make the button a block element */
    width: 100%; /* Add this line to make the button take the full width of its container */
}


.image-wrapper {
    position: relative;
}


    .image-icons span {
        cursor: pointer;
        font-size: 18px;
        color: #ffffff;
        margin: 0 3px;
    }

.image-wrapper:hover .image-icons {
    display: flex;
}




