/* Resume bulk operation styles */

.resume-card-wrapper {
    position: relative;
}

.resume-card {
    transition: all 0.2s ease-in-out;
}

.resume-card.selected {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.resume-checkbox-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resume-checkbox-overlay .form-check {
    margin: 0;
    padding: 0;
}

.resume-checkbox-overlay .form-check-input {
    margin: 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.batch-mode-active .resume-card {
    cursor: pointer;
}

.batch-mode-active .resume-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#bulk-actions-toolbar {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

#batch-mode-toggle.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

@keyframes highlight {
    0% { background-color: transparent; }
    50% { background-color: rgba(0, 123, 255, 0.1); }
    100% { background-color: transparent; }
}

.resume-highlight {
    animation: highlight 1s ease;
}