/* Global Styles */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Common UI Elements */
.dotted-line {
    background-image: linear-gradient(to right, #9CA3AF 33%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 12px 2px;
    background-repeat: repeat-x;
    height: 2px;
}

.dark .dotted-line {
    background-image: linear-gradient(to right, #4B5563 33%, rgba(255, 255, 255, 0) 0%);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
