* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 2px;
    background: #e8e8e8;
}

::-webkit-scrollbar-thumb {
    background: #bcbcbc;
}

body {
    font-family: system-ui, sans-serif;
    background: linear-gradient(to top, #0d2137, #3cabb4);
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

main {
    margin: 32px;
    max-height: 100vh;
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    position: relative;
    box-shadow: 0 0px 1rem #0003;
    overflow: hidden;
    max-height: calc(100vh - (2 * 32px));
    border-radius: 10px;
}

main .topbar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    background: #205969;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

main .topbar:has(.deploy) {
    padding-left: 0;
}

main .topbar .left {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main .topbar .deploy {
    padding: 0 20px;
    height: 100%;
    vertical-align: middle;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
    border-right: 1px dashed rgba(255, 255, 255, 0.2);
    margin-right: 16px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

main .topbar .deploy:hover {
    background: #0004;
}

main .topbar input {
    color: #b1d0e0;
    width: 320px;
    border-radius: 40px;
    background: #0004;
    padding: 1px 10px 0 12px;
    height: 36px;
    font-size: 16px;
    border: unset;
    outline: none;
}

main .topbar input::placeholder {
    color: #b1d0e0;
    font-size: 14px;
}

main .topbar nav {
    display: flex;
    height: 40px;
    align-items: center;
    gap: 4px;
}

main .topbar nav a {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: #d0eefd;
    border-radius: 40px;
    transition: all 0.2s ease;
}

main .topbar nav a:hover {
    background: #0004;
}

main .dashboard,
main .side {
    padding-top: 60px;
    background: #f6f6f6;
}

main .dashboard {
    border-right: 1px solid #dedede;
    overflow-y: scroll;
}