.nav-item {
    margin-right: 4rem !important;
}
body {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    font-size: 16px;
}
         .search-section {
                    margin-bottom: 30px;
                    padding: 20px;
                    border: 1px solid #ddd;
                    border-radius: 4px;
                }
        h1 {
            color: #333;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        th, td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: #4CAF50;
            color: white;
        }
        tr:hover {
            background-color: #f5f5f5;
        }
         input[type="text"],
                input[type="number"],
                select {
                    width: 100%;
                    padding: 8px;

                    border: 1px solid #ddd;
                    border-radius: 4px;
                    box-sizing: border-box;
                }
                button {
                    background-color: #4CAF50;
                    color: white;
                    padding: 10px 20px;
                    border: none;
                    border-radius: 4px;
                    cursor: pointer;
                    font-size: 16px;
                }
                button:hover {
                    background-color: #45a049;
                }
                .cancel {
                    background-color: #f44336;
                    margin-left: 10px;
                }
                .cancel:hover {
                    background-color: #da190b;
                }
                .required {
                    color: red;
                }
                 .form-group {
                       margin-bottom: 15px;
                   }
            /* Base font size for better mobile readability */
            body {
                font-family: Arial, sans-serif;
                max-width: 1200px;
                margin: 50px auto;
                padding: 20px;
                font-size: 16px;
            }


            @media (max-width: 768px) {
                table {
                    display: block;
                    overflow-x: auto;
                    white-space: nowrap;
                }


                .nav-item {
                    margin-right: 1rem !important;
                }


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


                button, .btn {
                    width: 100%;
                    margin-bottom: 10px;
                }
            }