
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.main_cal_sec {
    display: flex;
    justify-content: center;
    align-items: center;
}

.calculator-section {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    width: 100%;
    max-width: 600px;
    margin-bottom: 20px;
}

.calculator-form-group {
    margin-bottom: 15px;
}

.calculator-form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.calculator-form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.calculator-form-buttons {
    display: flex;
    justify-content: space-between;
}

.calculator-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    width: 49%;
    cursor: pointer;
    background-color: #0264b3;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.calculator-button:hover {
    background-color: #0056b3;
}

.tables-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.calculator-table-data-section {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.calculator-table-data {
    width: calc(50% - 10px);
    background-color: #ffffff;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.calculator-table-data caption {
    background-color: #0264b3;
    color: #ffffff;
    padding: 10px;
    font-weight: bold;
    text-align: left;
}

.calculator-table-data td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    font-size: medium;
}

.calculator-table-data tr:last-child td {
    border-bottom: none;
}

.main_div_1 {
    padding: 10px;
    font-size: 16px;
}

.head_h2 {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.link_div {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link_btn {
    padding: 5px 10px;
    border-radius: 7px;
    color: white;
    background-color: #0264b3;
    margin-top: 7px;
}

.note_div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 20px;
}

.note_h2 {
    font-weight: 600;
    margin-top: 5px;
}

/* Media Query for Mobile Devices */
@media (max-width: 600px) {
    .calculator-form-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .calculator-button {
        width: 100%;
    }

    .calculator-table-data {
        width: 100%;
    }

    .calculator-table-data-section {
        flex-direction: column;
    }

    .head_h2 {
        font-size: 20px;
    }
}

