﻿/* Logo styling */
.main-logo {
    display: flex;
    align-items: center; /* Center vertically */
    gap: 10px; /* Space between image and text */
}

    .main-logo img {
        height: auto;
        max-height: 50px;
    }

/* Side links container */
.side-links {
    position: fixed;
    left: -50px;
    top: 20%;
    width: 50px;
    display: flex;
    flex-direction: column;
    background-color: rgba(169, 169, 169, 0.874);
    border-radius: 30px;
    align-items: center;
    transition: 0.5s;
    margin-left: 5px;
    z-index: 100;
}

    /* Icons inside side links */
    .side-links span {
        padding: 20px 0;
        font-size: 20px;
    }

    /* Side links when opened */
    .side-links.fixed {
        left: 0;
    }

    /* Arrow to attract user */
    .side-links .side-arrow {
        position: absolute;
        right: -15px;
        top: 50%;
        transform: translateY(-50%);
        background-color: #af8643;
        color: #fff;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        text-align: center;
        line-height: 30px;
        cursor: pointer;
        animation: bounce 1.5s infinite;
        font-size: 14px;
    }

@keyframes bounce {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(-5px);
    }
}

/* Dropdown styling for admin panel */
.dropdown-menu {
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

    .dropdown-menu .dropdown-header {
        font-size: 0.75rem;
        font-weight: bold;
        color: #6c757d;
        margin-bottom: 0.5rem;
    }

.dropdown-item:hover {
    background-color: #f8f9fa;
    border-radius: 4px;
}
