body {
    background-color: #f0f0f0; /* Very light gray background */
    margin: 0; /* Remove default margin */
    font-family: Arial, sans-serif; /* Optional: set a default font */
}

.fixed-image-container {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 240px; /* Larger size (4 times 60px) */
    height: 240px; /* Larger size (4 times 60px) */
    background-color: rgba(255, 255, 255, 0.5); /* White color with 50% opacity */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Make sure it stays on top */
    transition: background-color 0.3s ease; /* Smooth transition */
}

.fixed-image-container img {
    width: 80%; /* Adjust size as needed */
    height: auto;
    border-radius: 50%;
}

.fixed-icons-container {
    position: fixed;
    top: 40%;
    right: 5px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}

.fixed-icons-container a {
    position: relative;
    margin: 5px 0; /* Reduced the margin from 10px to 5px */
}

.fixed-icons-container img {
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.fixed-icons-container img:hover {
    transform: scale(1.2);
}

.fixed-icons-container .tooltip {
    position: absolute;
    left: -100px; /* Adjusted this value to position the tooltip further to the left */
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    font-size: 16px; /* Increased font size */
}

.fixed-icons-container a:hover .tooltip {
    opacity: 1;
}


.fixed-icons-container .tooltip1 {
    position: absolute;
    left: -70px; /* Adjusted this value to position the tooltip further to the left */
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    font-size: 16px; /* Increased font size */
}

.fixed-icons-container a:hover .tooltip1 {
    opacity: 1;
}
