/* Style for the blackout overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 1040; /* Higher than sidebar */
    display: none; /* Hidden by default */
    }

    /* Sidebar styles */
    .sidebar {
    position: fixed;
    top: 0;
    right: 0; /* Positioned on the right */
    height: 100%;
    width: 250px;
    background-color: #f8f9fa;
    color: #212529;
    z-index: 1045; /* Higher than the overlay */
    transform: translateX(100%); /* Initially off-screen to the right */
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column; /* Ensure vertical stacking */
    }

    .sidebar.open {
    transform: translateX(0); /* Slide into view */
    }
    /* Style for the bottom section */
    .sidebar-footer {
        margin-top: auto; /* Pushes the footer to the bottom */
        padding: 1rem;
        background-color: #e9ecef; /* Slightly darker background for distinction */
        text-align: center;
        }
    
        .sidebar-footer .dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 0 5px;
        background-color: #6c757d; /* Bootstrap secondary color */
        border-radius: 50%; /* Make it a circle */
        }


        .btn-outline-pink {
            color: pink; /* Text color */
            border-color: pink; /* Border color */
          }
      
          .btn-outline-pink:hover {
            background-color: pink; /* Background color on hover */
            color: white; /* Text color on hover */
          }

.main {
    padding: 2%;
}


    #floatingButton {
        position: fixed;
        bottom: 80px; /* Adjust this to be a bit above the message icon */
        right: 20px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        z-index: 1000;
        color: white;
        background-color: pink;
        display: flex;
        justify-content: center;
        align-items: center;
    }

