body {
    margin: 0;
    background: #ededed;
    font-family: Arial, sans-serif;
}

.header {
    background: #1f8f3d;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 22px;
}

.wrapper {
    padding: 25px;
    display: flex;
    gap: 30px;
}

/* ---------------------------------------------------
   Tabela jak Google Sheets
--------------------------------------------------- */
.sheet {
    background: white;
    border-collapse: collapse;
    border: 1px solid #c7c7c7;
    font-size: 15px;
    width: 70%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.sheet th {
    background: #e8eaed;
    padding: 8px;
    border: 1px solid #d1d1d1;
    font-weight: bold;
    text-align: center;
}

.sheet td {
    border: 1px solid #dcdcdc;
    padding: 8px;
    background: white;
    min-width: 110px;
}

.sheet td.fname {
    font-weight: bold;
    background: #f3f7ff;
}

/* ---------------------------------------------------
   Zadania
--------------------------------------------------- */
.tasks-box {
    background: white;
    padding: 20px;
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.tasks-box h2 {
    margin-top: 0;
    font-size: 20px;
}

.tasks-box ul {
    margin: 0;
    padding-left: 20px;
}

.tasks-box li {
    margin-bottom: 8px;
    font-size: 15px;
}
