/* 
  This CSS line imports the Meyer Reset CSS, a CSS file that resets the default styles of all HTML elements
  to a consistent baseline across different browsers.
  The commented out version of this line is the original, but the uncommented version imports the CSS file
  using a CDN (Content Delivery Network), which is a network of servers that deliver web pages and other
  web content to users. Using a CDN can help to speed up the loading of your website by serving the CSS file
  from a server closer to the user.
*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
/* DataTables styles */
@import url("https://cdn.datatables.net/1.13.6/css/dataTables.bootstrap5.min.css");
@import url("https://cdn.datatables.net/buttons/2.4.2/css/buttons.bootstrap5.min.css");
@import url("https://cdn.datatables.net/responsive/2.5.0/css/responsive.bootstrap5.min.css");

@import url("https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css");

/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 *= require_tree ./components
 *= require auth_forms
 *= require_tree .
 *= require_self
 */








/* Local DataTables overrides */
/* @import "datatables"; */

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0px;
  height: 100%;
}
