/* Cross-platform system font */
body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
}

/* Layout */

.main-container {
    display: flex;
    height: 100vh;
}

.left-panel {
    width: 25%;
    padding: 25px;
    border-right: 1px solid #ddd;
    background: #f8f8f8;
}

.right-panel {
    width: 75%;
    padding: 20px;
    position: relative;
    background-image: url('/assets/texture.png');
}

/* Logo */

.logo {
    width: 120px;
    display: block;
    margin: auto;
}

.title {
    text-align: center;
}

/* Upload box */

.upload-box {
    width: 100%;
    height: 100px;
    line-height: 100px;
    border: 2px dashed #bbb;
    border-radius: 6px;
    text-align: center;
    background: white;
    margin-bottom: 20px;
    transition: 0.2s;
}

.upload-box:hover {
    border-color: #4a90e2;
}

/* Dropdown */

.dropdown {
    margin-bottom: 20px;
}

/* Buttons */

button {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

/* Export button */

.button-export {
    background: #4a90e2;
    color: white;
}

.button-export:hover {
    background: #357ABD;
    transform: translateY(-1px);
}

/* Progress */

.progress-container {
    margin-top: 20px;
}

.progress-bar {
    width: 100%;
}

.progress-log {
    height: 200px;
    overflow-y: scroll;
    background: black;
    color: lime;
    padding: 10px;
}