* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background: #10092c;
    overscroll-behavior: none;
    /* font-family: "Inter"; */
    overflow: hidden;
    position: relative;
}

.header {
    opacity: 0.75;
}

.header h1 {
    background: #cfcfcf;
    background: linear-gradient(to top, #cecece 0%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glassy-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(50px);
    pointer-events: none;
    z-index: 1;
}

.canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.container {
    position: relative;
    /* top: 0; */
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vertical-divider {
    border-left: 1px solid #dee2e6;
    height: 365px;
}

.file-drop-area {
    border: 2px dashed #007bff;
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: background-color 0.2s ease;
}

.file-drop-area:hover {
    background-color: #f8f9fa;
}

.file-drop-area .icon {
    font-size: 48px;
    color: #007bff;
}

.file-drop-area .instructions {
    font-size: 18px;
    margin-top: 10px;
    color: #6c757d;
}

.file-drop-area input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-drop-area .file-name {
    font-size: 16px;
    margin-top: 10px;
    color: #495057;
}