.side-panel {
    position: fixed;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 1000;
    align-items: flex-start;
}

.panel-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E4007F;
    text-decoration: none;
    position: relative;
    
    /* Animation for smooth transition */
    transition: all 0.3s ease;
    
    /* Keep original position */
    padding-right: 0;
}

/* Create the text using ::after pseudo-element */
.panel-link::after {
    content: attr(data-text);
    position: absolute;
    left: 100%;
    top: 0;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(228, 0, 127, 0.9);
    color: white;
    padding: 0 20px;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    
    /* Initially hidden */
    opacity: 0;
    visibility: hidden;
    
    /* Smooth fade transition */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.panel-link:nth-child(1){
	background-color: #d395ad;
}
.panel-link:nth-child(1)::after{
	background-color: rgba(211, 149, 173, 0.9);
}
.panel-link:nth-child(2){
	background-color: #48a8b7;
}
.panel-link:nth-child(2)::after{
	background-color: rgba(72, 168, 183, 0.9);
}
.panel-link:nth-child(3){
	background-color: #5d7d6b;
}
.panel-link:nth-child(3)::after{
	background-color: rgba(93, 125, 107, 0.9);
}

/* When hovering over the link, show the text and extend padding */
.panel-link:hover::after {
    opacity: 1;
    visibility: visible;
}

/* When hovering over the link, show the text and extend padding */
.panel-link:hover::after {
    opacity: 1;
    visibility: visible;
}

.panel-link:hover {
    /* Extend padding-right by 8px only for this link */
    padding-right: 8px;
}

.panel-link img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}


/* .wim-items-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.wim-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex: 0 0 250px;
}

.wim-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.wim-item-image {
    margin-bottom: 10px;
}

.wim-item-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.wim-item-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.wim-item-title a {
    color: #333;
    text-decoration: none;
}

.wim-item-title a:hover {
    color: #0073aa;
    text-decoration: underline;
} */


/* @media (max-width: 768px) {
    .wim-items-container {
        flex-direction: column;
    }
    
    .wim-item {
        flex: 1 1 auto;
    }
} */