/* =========== *
 * ## Pages ##
 * =========== */

body[data-page="stand-editor"] {
    background: var(--grey-lighter);
}

/* ================== *
 * ## Stand Editor ##
 * ================== */

.stand-editor-component {
    display: flex;
    flex-direction: column;
    left: 50%;
    max-width: 400px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
}

.stand-editor-component > .header {
    background-color: var(--primary);
    color: var(--grey-lighter);
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    text-transform: uppercase;
}

.stand-editor-component .section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

.stand-editor-component .section > .header {
    color: var(--primary);
    font-size: 16px;
    font-weight: bold;
}

.stand-editor-component .section > .content {
    display: flex;
    flex-direction: column;
}

.stand-editor-component .action-container {
    display:flex;
    flex-direction: row;
    padding: 10px;
    position: relative;
    width: 100%;
}