/* style.css for Australia Pay Summary Calculator */
.atc-container {
    font-family: 'Poppins', sans-serif;
    max-width: 600px;
    margin: 40px auto;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 30px;
    color: #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.atc-heading {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
}

.atc-label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    color: #ccc;
    text-align: left;
}

.atc-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid #444;
    background-color: #2b2b2b;
    color: #f0f0f0;
    margin-bottom: 20px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.atc-input:focus {
    border-color: #6f42c1;
    outline: none;
}

.atc-button {
    background-color: #6f42c1;
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    width: 100%;
}

.atc-button:hover {
    background-color: #5a36a0;
}

.atc-result {
    margin-top: 30px;
    background: #2a2a2a;
    border-radius: 12px;
    padding: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #eeeeee;
    border-left: 5px solid #6f42c1;
}

.atc-result div {
    margin-bottom: 10px;
}
