/* Visas lapas pamata stils */
body{
    font-family: Arial;        /* Fonts */
    background: #f4f4f4;       /* Gaiši pelēks fons */
    padding: 40px;             /* Atstarpe no malām */
}

/* Tabulas izskats */
table{
    border-collapse: collapse; /* Noņem dubultās līnijas */
    width: 100%;               /* Aizņem visu platumu */
    background: white;         /* Balts fons */
}

/* Tabulas šūnas (gan virsraksti, gan dati) */
th, td{
    border: 1px solid #ccc;    /* Rāmis ap šūnām */
    padding: 10px;             /* Iekšējā atstarpe */
}

/* Tabulas virsraksts */
th{
    background: #333;          /* Tumšs fons */
    color: white;              /* Balts teksts */
}

/* Formas ievades lauki */
input, textarea, select{
    padding: 8px;              /* Iekšējā atstarpe */
    margin: 5px;               /* Atstarpe starp elementiem */
    width: 300px;              /* Fiksēts platums */
}

/* Poga */
button{
    padding: 8px 15px;         /* Izmērs */
    background: #2ecc71;       /* Zaļa krāsa */
    border: none;              /* Bez rāmja */
    color: white;              /* Teksta krāsa */
    cursor: pointer;           /* Rādītājs kā roka */
}

/* Pogas efekts uz hover */
button:hover{
    background: #27ae60;       /* Tumšāka zaļa */
}

/* Saites */
a{
    margin-right: 15px;        /* Atstarpe starp linkiem */
}