html {
  font-size: 14px;
}
@media print {
    .printPageButton {
        display: none;
    }
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  font-family:'Times New Roman';
}
.invoice-row dt, .invoice-row dd {
    display: inline;
    margin-right: 10px; /* Adjust this value for spacing */
}
/* Style for the entire form */
.form-container {
    width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #f7f7f7;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Style for labels */
label {
    font-weight: bold;
}

/* Style for radio buttons */
.radio-label {
    margin-right: 10px;
    font-size: 18px;
}

/* Style for the submit button */
#submit-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 15px;
}

/* Style for selected payment method (Bank or Fund) */
.selected-payment-method {
    font-weight: bold;
    color: #007bff;
}
/*A4 print*/


@media print {
    body

{
    size: A4;
    margin: 0;
    padding: 0;
}

.print-container {
    width: 210mm;
    height: 297mm;
    margin: 20mm;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #000;
    padding: 8px;
}

img {
    max-width: 100%;
}

.text-center {
    text-align: center;
}

.row {
    display: flex;
    justify-content: space-between;
}
    /* DataTables scrollbar styling */
    .dataTables_scrollBody {
        border: 1px solid #ccc;
    }

        .dataTables_scrollBody::-webkit-scrollbar {
            height: 12px;
        }

        .dataTables_scrollBody::-webkit-scrollbar-track {
            background-color: #f5f5f5;
        }

        .dataTables_scrollBody::-webkit-scrollbar-thumb {
            background-color: #ccc;
            border-radius: 6px;
        }

            .dataTables_scrollBody::-webkit-scrollbar-thumb:hover {
                background-color: #aaa;
            }

}
@media (max-width: 1024px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-gradient {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}