/**
 * UTI PAN Card Photo Resizer Tool Styles
 */

.tab-btn {
    transition: all 0.3s ease;
}

.tab-btn.active {
    font-weight: bold;
}

/* Standard file input styling */
.file-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    background-color: white;
}

.file-input:hover {
    border-color: #aaa;
}

.upload-btn {
    background-color: #4a90e2;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.upload-btn:hover,
.upload-btn:focus {
    background-color: #3a7bc8;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    outline: none;
}

.download-btn {
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filename-display {
    color: #666;
    font-size: 0.85rem;
}

#photo-preview,
#signature-preview,
#document-preview {
    transition: all 0.3s ease;
}

/* Progress bar styles */
.progress-bar {
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #4a90e2;
    width: 0%;
    transition: width 0.3s ease;
}

input[type="range"] {
    -webkit-appearance: none;
    height: 5px;
    background: #d3d3d3;
    border-radius: 5px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #4a90e2;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #4a90e2;
    cursor: pointer;
} 