/* Navbar */
.navbar {
    background-color: white;
    border-bottom: 4px solid #f4691d;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand logo */
.navbar-brand {
    display: inline-block;
    height: 48px;
    line-height: 40px;
    padding: 0;
    margin: 0;
}

/* Navbar items */
.navbar-nav .nav-item .nav-link {
    text-transform: uppercase;
    font-weight: 700;
    color: #2e2f34;
    letter-spacing: -0.5px;
    padding: 10px;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #f4691d;
}

/* Dropdown styling */
.dropdown-menu {
    background-color: #293446;
    border: 1px solid #ddd;
    padding: 15px;
    width: 168px;
    top: 30px;
}

.dropdown-item {
    background: #2b3649;
    border-bottom: 1px solid #344055;
    color: white !important;
    padding: 10px;
    font-size: 10px;

}

.dropdown-item:hover {
    background-color: #3e4759;
    color: white !important;
}

.dropdown-item a {
    color: white !important;
    text-decoration: none;
}

.dropdown-item a:hover {
    color: #f4691d !important;
}

/* Post preview */
.post-preview {
    display: none;
    position: absolute;
    top: 0;
    left: 165px;
    background: #ffffff;
    min-height: 235px;
    width: 535px;
    padding: 20px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.dropdown-item:hover .post-preview {
    display: block;
}

.post-preview-item {
    display: inline-block;
    width: 156px;
    margin-right: 10px;
    vertical-align: top;
}

.post-preview img {
    width: 150px;
    height: 93px;
    border: 3px solid #eaeaea;
    border-radius: 2px;
}

.post-description {
    color: #2e2f34;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 150px;
    margin-top: 7px;
    text-align: left;
}

.post-description:hover {
    color: #f4691d;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .navbar {
        height: 65px; /* Adjust the navbar height for mobile */
    }

    .brand {
        height: 40px;
        line-height: 40px;
    }

    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        background: none;
        border: none;
    }

    .dropdown-item {
        padding: 10px;
        color: #fff;
    }

    .dropdown-item::after {
        content: none;
    }

    .post-preview {
        display: none;
    }
    
    
    
}


/* Custom styling for the navbar toggler icon */
.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1); /* Change the border color if needed */
}

.navbar-toggler-icon {
    background-image: none; /* Remove default Bootstrap icon */
    width: 24px;
    height: 2px;
    background-color: black; /* Change this to black */
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    background-color: black; /* Change this to black */
    width: 24px;
    height: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -7px;
}

.navbar-toggler-icon::after {
    top: 7px;
}

