.pcc-calculator {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.pcc-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.pcc-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .pcc-form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pcc-form-group {
    margin-bottom: 15px;
}

.pcc-label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.pcc-select,
.pcc-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.pcc-buttons {
    text-align: center;
    margin: 20px 0;
}

.pcc-button {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.pcc-button-calculate {
    background: #4CAF50;
    color: white;
}

.pcc-button-reset {
    background: #f5f5f5;
    color: #333;
}

.pcc-results {
    margin-top: 30px;
    overflow-x: auto;
}

.pcc-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.pcc-table th,
.pcc-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.pcc-table th {
    background: #4CAF50;
    color: white;
}

.pcc-table tr:nth-child(even) {
    background: #f9f9f9;
}

.pcc-table .row-gross {
    background: #e3f2fd;
    font-weight: 500;
}

.pcc-table .row-deductions {
    background: #ffebee;
    font-weight: 500;
}

.pcc-table .row-net {
    background: #e8f5e9;
    font-weight: 700;
}

/* Mobile Responsive Adjustments */
@media (max-width: 767px) {
    .pcc-calculator {
        padding: 15px;
    }

    .pcc-table {
        font-size: 14px;
    }

    .pcc-table th,
    .pcc-table td {
        padding: 8px;
    }

    .pcc-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .pcc-button {
        width: 100%;
        margin: 0;
    }
}