section {
    grid-column: 4 / 13;
}

#toggle-container {
    margin: 0;
    margin-bottom: 5vh;
    width: 100%;
}

#pricing-container {
    justify-content: flex-start;
}

.pricing-card button {
    width: 100%;
    border: none;
}

.pricing-card button:active {
    color: var(--primary-2);
    background-color: white;
}

#pricing-container.active-subscription {
    justify-content: center;
}

.active-subscription .pricing-card {
    width: 30%;
}

.billing-note {
    grid-column: 2 / 13;
    display: flex;
    justify-content: center;
    margin: 4vh;
}

.overlay {
    cursor: default;
}

#warning {
    width: 30vw;
    /* height: 60vh; */
    color: black;
    background-color: white;
    padding: 4vh;
    border-radius: 8px;
}

#warning h3 {
    text-align: center;
    font-size: 1.6em;
    margin-bottom: 3vh;
}

#warning p {
    background-color: white;
    padding: 0;
}

#warning-buttons {
    display: flex;
    justify-content: space-around;
    margin: 4vh 0;
}

#warning-buttons button {
    width: 30%;
    height: 5vh;
    border-radius: 5px;
}

#warning-buttons button:first-child {
    background-color: var(--accent);
    color: white;
}

#warning-buttons button:last-child {
    background-color: var(--primary-3);
    color: var(--primary-2);
}

#warning-buttons button:active {
    color: var(--primary-2);
    background-color: white;
}

@media (orientation: portrait) {
    #job-welcome {
        margin: 2vh 0;
    }
    #panel {
        grid-column: 1 / 7;
    }

    .active-subscription .pricing-card {
        width: auto;
    }

    #warning {
        width: 90vw;
    }
}
