/* Full viewport setup to prevent body scrolling */
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
}

/* The 'Stage' where the canvas lives */
#workspace {
    flex: 1;
    background-color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

#canvas-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 60px;
}

.canvas-container {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
    border-radius: 4px;
    background: white;
    transition: transform 0.2s ease-out;
}

/* Custom style for the dropdowns in the Black Strip */
.header-select {
    background: transparent;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    outline: none;
    cursor: pointer;
}

.header-select:hover {
    color: #fff;
}

.header-select option {
    background: #0f172a;
    color: #fff;
}