﻿
.circle::after {
    content: attr(data-label);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    letter-spacing: 0.18em;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.65);
    pointer-events: none;
    opacity: 0.85;
}

.dark .circle::after {
    color: rgba(255, 255, 255, 0.8);
}

.circle .label {
    opacity: 0;
}

/* === Animations === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.3s ease;
}

@media (min-width: 1280px) {
    .minfo__sidebar__wrapper {
        left: clamp(1.5rem, 3vw, 3rem);
    }
}

@media (max-width: 1279px) {
    .md\:max-w-sidebar {
        max-width: 100% !important;
    }
}
