/* Same styles as before, plus: */

/* Tool page specific styles */
.tool-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tool-header {
    text-align: center;
    margin-bottom: 2rem;
}

.file-upload-area {
    border: 2px dashed #ccc;
    padding: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.file-upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(74, 107, 255, 0.05);
}

.tool-options {
    margin-bottom: 2rem;
}

.tool-result {
    display: none;
    margin-top: 2rem;
}

.progress-bar {
    transition: width 0.3s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tool-container {
        padding: 1rem;
    }
    
    .file-upload-area {
        padding: 1.5rem;
    }
}