.ptc-container {
    max-width: 700px;
    margin: 30px auto;
    padding: 30px;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    font-family: Arial, sans-serif;
	transition: all 0.25s ease, box-shadow 0.25s ease;
	transform: translateZ(0);
}


.ptc-container:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.ptc-container input,
.ptc-container select {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: 0.2s ease;
}

.ptc-container input:focus,
.ptc-container select:focus {
    border-color: #007a6c;
    box-shadow: 0 0 0 3px rgba(0,115,170,0.12),
                0 2px 8px rgba(0,0,0,0.05);
}

.ptc-container button {
    background: linear-gradient(135deg, #007a6c, #012f34);
    color: white;
    padding: 14px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: 0.2s ease;
	letter-spacing: 0.3px;
}

.ptc-container button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0,115,170,0.25);
}

.ptc-container button:active {
    transform: scale(0.98);
}

.ptc-container h3 {
    margin-top: 25px;
    margin-bottom: 15px;
}

.ptc-container p {
    background: #f9f9f9;
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 15px;
	display: flex;
    justify-content: space-between;
    align-items: center;
	font-weight: 800;
    color: #007a6c;
}

.ptc-container p span {
    font-weight: 700;
    color: #007a6c;
    font-size: 16px;
}

.ptc-container label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    color: #333;
}

.ptc-container select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;

    padding: 14px;
    padding-right: 40px;

    font-size: 15px;
    cursor: pointer;

    transition: all 0.2s ease;
}

.ptc-container select:hover {
    border-color: #007a6c;
}

.ptc-container select:focus {
    border-color: #007a6c;
    box-shadow:
        0 0 0 3px rgba(0,122,108,.15);
}

/* ========================= */
/* SALARY INPUT PKR STYLE */
/* ========================= */

.salary-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.currency-label {
    position: absolute;
    left: 12px;
    font-weight: 600;
    color: #666;
    z-index: 2;
	margin-bottom: 18px;
}

.salary-input-wrapper input {
    padding-left: 55px;
}

/* ========================= */
/* CONTAINER RESPONSIVENESS */
/* ========================= */

@media (max-width: 600px) {
    .ptc-container {
        padding: 20px;
        margin: 15px;
    }

    .ptc-container button {
        font-size: 15px;
		padding: 16px;
    }
}

.ptc-title {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #012f34;
}

/* GRID */
.ptc-tax-grid {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

/* CARDS */
.ptc-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: 0.2s ease;
}

.ptc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* CARD TITLE */
.ptc-card h4 {
    margin-bottom: 15px;
    color: #007a6c;
    font-size: 16px;
}

/* ROWS */
.ptc-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
}

.ptc-row:last-child {
    border-bottom: none;
}

.ptc-row span:last-child {
    font-weight: 700;
    color: #012f34;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ptc-tax-grid {
        flex-direction: column;
    }
}