/* ========================================
   BATCH OPERATIONS STYLES
   ======================================== */

/* Batch toolbar */
.batch-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f0f7ff;
    border: 2px solid #667eea;
    border-radius: 8px;
    margin: 10px 0;
}

.batch-count {
    font-weight: 600;
    color: #667eea;
    margin-right: auto;
}

/* Select all checkbox */
.select-all-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}

.select-all-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Job card checkbox */
.job-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    flex-shrink: 0;
}

.job-card .job-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Clone button */
.btn-clone-job {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 12px;
    background: #ffc107;
    color: #212529;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-clone-job:hover {
    background: #e0a800;
    transform: scale(1.05);
}

/* Modal form actions */
.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #e0e0e0;
}

.form-actions .btn {
    flex: 1;
}

/* Batch modal specific */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 20px;
}

.modal-body {
    padding: 10px 0;
}

/* Form elements in batch modals */
.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.form-group input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
}

.form-group input[type="number"]:focus {
    outline: none;
    border-color: #667eea;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .batch-toolbar {
        flex-wrap: wrap;
    }

    .batch-toolbar .btn {
        flex: 1;
        min-width: 80px;
    }

    .select-all-label {
        font-size: 13px;
    }

    .job-checkbox {
        width: 18px;
        height: 18px;
    }
}