.zip-tool-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.zip-tool-container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.zip-tool-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.zip-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.zip-tabs {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1rem;
}

.zip-tab {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 0.95rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.zip-tab.active {
    color: #4f46e5;
    border-bottom-color: #4f46e5;
}

.zip-tab:hover:not(.active) {
    color: #4f46e5;
    border-bottom-color: #c7d2fe;
}

.zip-section {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
}

.zip-section.active {
    display: flex;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.zip-input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.zip-input:focus {
    outline: none;
    border-color: #4f46e5;
}

.file-upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed #c7d2fe;
    border-radius: 8px;
    background: #f8fafc;
    color: #4f46e5;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.file-upload-area:hover {
    border-color: #4f46e5;
    background: #f0f4ff;
}

.file-upload-area svg {
    margin-bottom: 1rem;
}

.file-upload-area p {
    margin: 0;
    font-size: 0.95rem;
}

.zip-file-input {
    display: none;
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background: #f1f5f9;
    border-radius: 6px;
    font-size: 0.85rem;
}

.file-item svg {
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.file-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

.file-size {
    color: #64748b;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.remove-file {
    color: #ef4444;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 0.5rem;
}

.zip-button {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    margin-top: 0.5rem;
}

.zip-button:hover {
    background: #4338ca;
}

.zip-button:disabled {
    background: #c7d2fe;
    cursor: not-allowed;
}

.zip-status {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    height: 100%;
    position: sticky;
    top: 20px;
}

.zip-output {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.status-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #64748b;
    text-align: center;
    gap: 1rem;
}

.status-placeholder svg {
    opacity: 0.7;
}

.unzip-results {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
}

.unzip-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #64748b;
    text-align: center;
    gap: 1rem;
}

.unzip-placeholder svg {
    opacity: 0.7;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-top: 1rem;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: #4f46e5;
    width: 0%;
    transition: width 0.3s;
}

.status-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.status-message.success {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.status-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

@media (max-width: 768px) {
    .zip-tool-wrapper {
        grid-template-columns: 1fr;
    }
    
    .zip-status {
        position: static;
        min-height: 300px;
    }
	.unzip-results {
    margin-top: 15px;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    padding: 15px;
    border-radius: 8px;
    background: #f8fafc;
}
}