/* Xerox Page Styling */

.bg-theme-light-grey {
    background-color: #f1f3f6;
}

.upload-dropzone {
    border: 2px dashed #ccc;
    background-color: #fafafa;
    padding: 60px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-dropzone:hover, .upload-dropzone.dragover {
    border-color: #4169E1;
    background-color: rgba(65, 105, 225, 0.05);
}

.file-item {
    border: 1px solid #eee;
    transition: transform 0.2s;
}

.file-item:hover {
    transform: translateX(5px);
    border-color: #4169E1;
    box-shadow: 0 4px 10px rgba(0,255,127,0.1);
}

/* Custom Config Inputs */
.config-label {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 15px 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #878787;
    font-weight: 600;
}

.config-radio input:checked + .config-label {
    border-color: #4169E1;
    background-color: rgba(65, 105, 225, 0.05);
    color: #1a1a1a;
    box-shadow: 0 4px 10px rgba(0,255,127,0.15);
}

.config-radio:hover .config-label {
    border-color: #4169E1;
}

.custom-select {
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 12px;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
}

.custom-select:focus {
    border-color: #4169E1;
    box-shadow: none;
}

.custom-number-input {
    border: 2px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.custom-number-input input {
    border: none;
    background: transparent;
    max-width: 60px;
}

.custom-number-input input:focus {
    box-shadow: none;
}

.custom-number-input button {
    background: white;
    border: none;
    color: #1a1a1a;
    font-weight: bold;
    width: 40px;
}

.custom-number-input button:hover {
    background: rgba(65, 105, 225, 0.2);
    color: #1a1a1a;
}

.border-dashed {
    border-top: 2px dashed #ddd;
    opacity: 1;
}

.btn-theme-black {
    background-color: #1a1a1a;
    border: none;
    transition: all 0.3s;
}

.btn-theme-black:hover {
    background-color: #0d0d0d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,255,127,0.3);
}

@media (max-width: 991px) {
    .print-config-panel {
        margin-bottom: 70px; /* space for bottom nav */
    }
}
