@use '../NewLightboxStyles.scss' as newstyles; .newLightboxHeader-container { width: 100%; height: 100%; background: newstyles.$gray-l1; border-radius: 20px 20px 0px 0px; padding: 20px; display: grid; grid-template-columns: 70% 30%; grid-template-rows: 50% 50%; .title-container, .type-container { display: flex; flex-direction: row; gap: 5px; justify-content: flex-start; align-items: center; } .title-container { grid-column: 1; grid-row: 1; } .type-container { grid-column: 1; grid-row: 2; .type { padding: 2px 7px !important; background: newstyles.$gray-l2; } } .lb-label { color: newstyles.$gray-l3; font-weight: newstyles.$h1-weight; } .lb-button { border: solid 1.5px black; padding: 3px 5px; cursor: pointer; display: flex; flex-direction: row; justify-content: space-evenly; align-items: center; transition: 0.2s ease; gap: 5px; font-size: newstyles.$body-size; height: fit-content; &:hover { background: newstyles.$gray-l2; } &.true { background: newstyles.$blue-l1; } } &.dark { background: newstyles.$black; } &.light, &.default { background: newstyles.$white; } }