body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

.custom-file-upload {
    border: 2px dashed #e2e8f0;
    transition: all 0.3s ease-in-out;
}
.custom-file-upload:hover {
    border-color: #4f46e5;
    background-color: #f8fafc;
    transform: scale(1.02);
}

#modal-close-btn {
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 300;
}

.candidate-card {
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.candidate-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.07), 0 4px 6px -4px rgb(0 0 0 / 0.07);
}

.skill-tag {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
    background-color: #eef2ff;
    color: #4338ca;
}

.spinner {
    border-color: #4f46e5;
    border-top-color: transparent;
    width: 1rem;
    height: 1rem;
    border-width: 2px;
    border-style: solid;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.pulse-dot {
    height: 8px;
    width: 8px;
    background-color: #4f46e5;
    border-radius: 50%;
    animation: pulse-animation 1.5s infinite;
}
@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(79, 70, 229, 0); }
    100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
}

.score-ring {
    width: 60px;
    height: 60px;
}
.score-ring-circle {
    transition: stroke-dashoffset 0.5s ease-in-out;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}