.calculator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(20px, 3vw, 30px);
}

.brand {
    font-family: "Press Start 2P", system-ui;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: #F1D9BD;
    white-space: nowrap;
}

.brand-info-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
    min-width: 0;
}

.info-block {
    font-family: "Press Start 2P", sans-serif;
    color: #F1D9BD;
    line-height: 1.2;
    flex-shrink: 0;
}

.info-digits,
.info-subtitle {
    font-size: clamp(0.4rem, 1.2vw, 0.5rem);
    margin: 0;
    opacity: 0.8;
    white-space: nowrap;
}

.info-divider {
    border: none;
    height: 1px;
    background-color: #F1D9BD;
    width: 100%;
    margin: 3px auto;
    opacity: 0.5;
}

.solar-panel {
    width: 25%;
    min-height: 40px;
    height: clamp(30px, 6vw, 45px);
    border: 2px solid #111;
    border-radius: 5%;
    background-color: #6C4838;
    background-image: repeating-linear-gradient(to right,
            #825848 0, #825848 2px,
            transparent 2px, transparent 25%);
    flex-shrink: 0;
}