table.compnay-costs-entry-table {
    background: white;
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-top: 20px;
}

.compnay-costs-entry-table th, 
.compnay-costs-entry-table td 
{
    padding: 10px 12px;
    text-align: center;
    border: 1px solid #ddd;
}

.compnay-costs-entry-table th {
    background: #2c3e50;
    color: #fff;
    font-weight: 600;
}

.compnay-costs-entry-table tbody tr:nth-child(even) 
{ 
    background: #f7f9fc; 
}
.compnay-costs-entry-table tbody tr:hover 
{ 
    background: #eaf0f7; }

.compnay-costs-entry-table tfoot th {
    background: #1c2b3a;
    color: #fff;
    font-weight: 600;
}

.compnay-costs-entry-table tfoot td { font-weight: 600; }




/* Przyciski */
.compnay-costs-entry-table button {
    background: #2c7be5;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.compnay-costs-entry-table button:hover 
{ 
    background: #1a5bb8; 
}


/* Przycisk Zapisz po lewej */
.pa-report-save-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

.pa-report-save-wrapper button {
    margin: 0;
    padding: 1rem 2rem;
}

/* Komunikaty w tabeli */
.compnay-costs-entry-table td div {
    font-size: 13px;
    margin-bottom: 4px;
}




/* Inputy w tabeli */
.pa-report-stats-input {
    width: 90px;
    height: 34px;
    font-size: 14px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #bbb;
    background: #fff;
    transition: all 0.3s ease;
}

.pa-report-stats-input:focus {
    border-color: #2c7be5;
    box-shadow: 0 0 4px rgba(44, 123, 229, 0.3);
    outline: none;
}

.pa-report-stats-input.saved {
    background: #f0f5ff;
    border: 1px solid #2c7be5;
}

.pa-report-stats-input.edited {
    background: #fff4e6;
    border: 1px solid #e67e22;
}




/* Responsywność */
@media (max-width: 768px) {
    .compnay-costs-entry-table table, 
    .compnay-costs-entry-table th, 
    .compnay-costs-entry-table td {
        font-size: 12px;
        padding: 6px 8px;
    }

    .pa-report-stats-input {
        width: 70px;
        height: 30px;
    }

    .compnay-costs-entry-table button {
        padding: 5px 10px;
        font-size: 12px;
    }
}
