.logo-container {
    margin-bottom: 1rem;
    text-align: center;
}

.logo-container img {
    width: auto;
    height: 60px;
    display: block;
    margin: 0 auto;
}

body {
    font-family: 'Barnhart', sans-serif;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

h1 {
    font-family: 'Barnhart', sans-serif;
    font-feature-settings: 'swsh';
    text-align: center;
    color: #333;
}

#dropzone {
    border: 2px dashed #ccc;
    background: #fff;
    font-feature-settings: 'swsh';
    border-radius: 10px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
    color: #999;
    margin-bottom: 1rem;
    transition: background 0.3s;
}

#dropzone.dragover {
    background: #e6f7ff;
    border-color: #3399ff;
    color: #3399ff;
}

#fileInput {
    display: none;
}

#fileList {
    max-width: 500px;
    width: 100%;
    margin-bottom: 1rem;
    list-style: none;
    padding-left: 0;
}

#fileList li {
    background: #fff;
    border: 1px solid #ddd;
    margin: 0.25rem 0;
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#fileList span {
    flex: 1;
}

.remove-btn {
    font-family: 'Barnhart', sans-serif;
    background: transparent;
    border: none;
    color: #ff4444;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 10px;
}

button {
    font-family: 'Barnhart', sans-serif;
    background: #000000;
    font-weight: 900;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 5s;
}

button:hover {
    background: linear-gradient(45deg, #d500f9, #ff1744);
}

#zipSize {
    margin-bottom: 1rem;
    color: #666;
}