body { 
    background-color: beige;
    font-family: Arial, sans-serif; 
    line-height: 1.4;
     margin: 10px; 
     color: #333; 
    } a 
    { color: red; 
        text-decoration: none;
     }
     a:hover 
     { text-decoration: underline;
     } center
      { text-align: center; 
        display: block;
    }

.emri{
    font-size: 30px;
    color: red;
    font-style: italic;
    font-weight: 900;
    text-align: justify;
}

.header {
    overflow-x: auto; /* Lejon scroll horizontal */
    white-space: nowrap;
    padding: 5px;
    font-size: 0px;
    max-width: 100%; 
    box-sizing: border-box; 
    text-align: left; 
    display: flex;
    gap: 0px;
}
.item {
    display: inline-block;
    padding: 5px 10px;
    margin-left: 0; 
}
.header a, .header select {
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    color: #333;
}
.header select {
    flex: 1;
}
.item {
    display: inline-block;
    padding: 0px;
    margin-left: 70px;
    
    
}

/* LINKET */
.header a, .header select {
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    color: #333;
}

/* GRID */
.container  {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    font-size: 20px;
}
. table container ,mesuesit1,mesuesit2, mesuesit3, mesuesit4, mesuesit5  {

    padding: 30px;
    margin: 10px;
    border-radius: 20px;
    text-align: justify;
    
}
/* BOX */
.mesuesit1, .mesuesit2, .mesuesit3, .mesuesit4, .mesuesit5 {
    padding: 30px;
    margin: 10px;
    border-radius: 20px;
    text-align: justify;
    color: black;
    
}

.mesuesit1 { background-color: gold; }
.mesuesit2 { background-color: lawngreen; }
.mesuesit3 { background-color: wheat; }
.mesuesit4 { background-color: yellow; }
.mesuesit5 { background-color: rosybrown; }

/* 📱 MOBILE */
@media (max-width: 600px) {

    .emri {
        font-size: 22px;
    }

    .container {
        grid-template-columns: 1fr; /* 1 kolonë në telefon */
    }

    .header {
        flex-wrap: nowrap;
    }

    .item {
        padding: 5px;
    }

    .mesuesit1, .mesuesit2, .mesuesit3, .mesuesit4, .mesuesit5 {
        padding: 15px;
        margin: 5px;
    }
}
            