body {
    font-family: 'Montserrat', sans-serif;
    /* Az új betűtípus */
    max-width: 600px;
    margin: 0 auto;
    padding: 15px;
    background-color: #f4f7f6;
    color: #2c3e50;
    /* Sötétszürke, profibb mint a sima fekete */
}

h1 {
    font-weight: 800;
    /* Extra vastag cím */
    text-transform: uppercase;
    /* Csupa nagybetű a komolyabb hatásért */
    letter-spacing: 1px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: #27ae60 3px solid;
    /* A zöld színed köszönjön vissza itt is */
    font-size: 1.3rem;
}

h3 {
    font-weight: 400;
    /* A tevékenység neve legyen közepesen vékony */
    font-size: 1rem;
    margin: 0;
}

.activity {
    background: white;
    margin-bottom: 5px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.controls button {
    font-size: 1.2em;
    width: 35px;
    height: 35px;
    cursor: pointer;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
}

.quantity {
    font-size: 1.2em;
    font-weight: bold;
    min-width: 25px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4em;
}

/* Új Összesítő elrendezés */
.total-container {
    margin: 20px 0;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #27ae60;
}

.total-label {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.total-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: #27ae60;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; /* Az összeg legyen a legvastagabb */
    font-size: 1.6rem; 
    color: #27ae60;
}

/* Gombok 3 + 1 elosztása */
.button-row {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.left-buttons {
    display: flex;
    gap: 10px;
}

.square-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.square-btn:active {
    transform: scale(0.9);
}

.danger-btn {
    border-color: #dc3545;
    color: #dc3545;
}