/* Choose.cshtml için özel CSS */

.position-card {
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.position-card:nth-child(1) { 
    animation-delay: 0.1s; 
}

.position-card:nth-child(2) { 
    animation-delay: 0.2s; 
}

.position-card:nth-child(3) { 
    animation-delay: 0.3s; 
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.position-card.selected {
    border-color: var(--toyotetsu-red) !important;
    box-shadow: 0 8px 16px rgba(220, 20, 60, 0.4) !important;
    transform: scale(1.02);
}

.position-card.hover-lift {
    transform: translateY(-5px) scale(1.02);
    transition: transform 0.3s ease;
}

.position-card.hover-reset {
    transform: translateY(0) scale(1);
    transition: transform 0.3s ease;
}

