/* Tool Container */
.ic-tool-box {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    text-align: center;
}

/* Upload Zone */
.ic-dropzone {
    border: 2px dashed #d1d5db;
    padding: 30px;
    margin: 20px 0;
    border-radius: 10px;
    background: #f9fafb;
}
.ic-browse-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}
.ic-browse-btn:hover { background: #1d4ed8; }

/* Conversion Buttons */
.ic-buttons {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
    margin: 20px 0;
}
.ic-convert-btn {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #2563eb;
    color: #fff;
    cursor: pointer;
    transition: all .2s ease;
}
.ic-convert-btn:hover { background:#1d4ed8; }

/* Progress */
.ic-progress-wrapper { margin:20px 0; }
.ic-progress-bar {
    width:100%; height:14px;
    background:#e5e7eb;
    border-radius:8px;
    overflow:hidden;
}
.ic-progress-fill {
    width:0%; height:100%;
    background:#10b981;
    transition:width .3s ease;
}
.ic-status-text { margin-top:8px; font-size:.9rem; color:#374151; }

/* Download */
.ic-download-wrapper { margin:20px 0; }
.ic-download-btn {
    display:inline-block;
    margin-top:15px;
    padding:12px 24px;
    border-radius:8px;
    background:#059669;
    color:#fff;
    text-decoration:none;
    font-weight:600;
}
.ic-download-btn:hover { background:#047857; }

/* Privacy Note */
.ic-privacy-note {
    margin-top:15px;
    font-size:.85rem;
    color:#6b7280;
    font-style:italic;
}

/* Pastel Color Schemes */
.ic-jpg { background:#fde68a; }
.ic-png { background:#bbf7d0; }
.ic-gif { background:#bfdbfe; }
.ic-webp { background:#fbcfe8; }
.ic-bmp { background:#e9d5ff; }
.ic-tiff { background:#fed7aa; }
.ic-pdf { background:#fecaca; }
.ic-avif { background:#d9f99d; }
