/* Custom styles for FriendCritic */
.annotation-pin {
    transition: all 0.2s ease;
}

.annotation-pin:hover {
    transform: scale(1.1) translate(-3px, -3px);
    z-index: 10;
}

.upload-zone {
    transition: all 0.3s ease;
}

.upload-zone.drag-active {
    transform: scale(1.02);
}

/* Smooth transitions */
* {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}