body {
    background-color: transparent;
}

.calculator-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    /* border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #002f65; */
}

.calculator-header {
    text-align: center;
}

.calculator-header h2 {
    font-weight: 600;
    margin-top: 0;
    color: #002f65;
}

.calculator-header p {
    color: #03a7cd;
}

.form-section {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.form-section h4 {
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #002f65;
    padding-bottom: 10px;
    color: #002f65;
}

.total-section {
    background-color: #e9ecef;
    padding: 20px;
    border-radius: 8px;
}

.total-section .form-group {
    margin-bottom: 0;
}

.total-section label {
    font-size: 18px;
    font-weight: 600;
    color: #002f65;
}

.total-section .form-control {
    font-size: 18px;
    font-weight: 600;
}

.btn-primary.btn-custom {
    background-color: #002f65;
    border-color: #002f65;
}

.btn-primary.btn-custom:hover {
    background-color: #001f44;
    border-color: #001f44;
}

.btn-success.btn-custom {
    background-color: #03a7cd;
    border-color: #03a7cd;
}

.btn-success.btn-custom:hover {
    background-color: #0282a2;
    border-color: #0282a2;
}

a {
    color: #03a7cd;
}

a:hover {
    color: #0282a2;
}

.text-right {
    text-align: right;
}

.form-group {
    margin-bottom: 7px !important;
}

@media (max-width: 767px) {
    .text-right {
        text-align: left;
    }
}

.tooltip-custom {
    font-size: 16px;
    margin-left: 5px;
    color: #777;
}

.tooltip-custom:hover {
    color: #333;
}

