@import url("./variables.css");

:root {
    --std-margin-internal: calc(var(--std-margin-side) / 2);
}

.output-section {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    border-radius: var(--std-border-radius);
    box-shadow: 0px 20px 20px var(--gray-200);
    color: var(--gray-400);
}

.output-content {
    height: 100%;
    margin: var(--std-margin-internal);
    display: none; /* standard = none | visible = flex*/
    flex-direction: column;
    gap: 1rem;
}
.output-content p {
    font-size: 16px;
    flex-grow: 1;
}

.info-output {
    height: 100%;
    margin: var(--std-margin-internal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}
.info-output img {
    width: 95%;
}
.info-output-message {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.info-output-message h2 {
    color: var(--gray-500);
}
.info-output-message p {
    color: var(--gray-400);
}

@media screen and (max-width: 768px) {
    .output-section {
        width: 100%;
        height: calc(50% - var(--mob-margin-side) - 70px);
        margin: var(--mob-margin-side) 0;
    }
    .info-output img {
        display: none;
    }
}