@import url(nav.css?v=6.0.0); /* Brings the Nav Bar styles */ 
@import url(ui-structure.css?v=7); /* Brings the main styles for the structure, important */ 
@import url(ui-elements/content-box.css?v=7); /* Its a basic container with many uses */ 
@import url(ui-elements/default-rules.css?v=7); /* Brings classes with propetys that all elements could use */ 
@import url(ui-elements/message.css?v=7); /* Brings the styles for the message box */
@import url(ui-elements/windows.css?v=7); /* Brings the styles for the message box */
@import url(ui-elements/tables.css?v=7); /* Brings the styles for the tables */
@import url(ui-elements/data-line.css?v=7); /* Brings the styles for the data line */
@import url(ui-elements/select.css); /* Brings the styles for the data line */
@import url(ui-elements/inputs.css); /* Brings the styles for the inputs */
@import url(ui-elements/md-elements.css?v=7); /* Brings the styles for some things of material web components */
@import url(ui-elements/calendar.css); /* Brings the styles for the dialog */
@import url(ui-elements/week-schedule.css); 


:root {
  /* color-scheme: light dark; */
}
a,button{
  will-change: transform; 
  -webkit-user-drag: none; 
  user-select: none;
}

body{
  width:100vw;
  height:100vh;
  margin:0;

  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--md-sys-color-background);
  font-family: 'Roboto', sans-serif;
  -webkit-tap-highlight-color: transparent
}
h1,h2,h3,h4,h5,h6,p{margin:0; color:var(--md-sys-color-on-background)}

md-icon {--md-icon-font: 'Material Symbols Rounded'; }
.material-symbols-rounded{user-select: none;}

.dm-sans{font-family: 'DM Sans', sans-serif !important;}
.weight-600{font-weight: 600 !important;}
.weight-500{font-weight: 500 !important;}
input::-webkit-date-and-time-value{ text-align:left; }

md-dialog form::-webkit-scrollbar{display:none !important}
md-icon.dynamic{--md-icon-size: ;}
md-icon.filled{font-variation-settings: 'FILL' 1;}
md-icon.pretty{
  --md-icon-size: 64px;
  padding:24px;
  background:var(--md-sys-color-surface-container-highest); 
  border-radius:88px;
}
md-icon.pretty.small{
  --md-icon-size: 24px;
  padding:8px;
  border-radius:64px;
}
md-icon.pretty.medium{
  --md-icon-size: 32px;
  padding:8px;
  border-radius:64px;
}
md-icon.absolute-card{
  --md-icon-size: 164px;
  font-variation-settings: 'FILL' 1;
  opacity: 0.2;
  position: absolute;
  top:0;
  /* top: 50%;
  transform: translateY(-50%); */

  right: -32px;
}
.absolute-card.centered{
  right: 0px;
}
md-icon.absolute-card.small{
  --md-icon-size: 64px;
  right: -16px;
  opacity:0.1
}

md-filled-tonal-button.big, md-filled-button.big, md-outlined-button.big {
  /* height: 64px; */
  height: 48px;
  /* --md-filled-tonal-button-padding: 16px 32px;
  --md-filled-tonal-button-font-size: 16px;
  --md-filled-tonal-button-border-radius: 16px; */
}
md-outlined-icon-button.big, md-filled-tonal-icon-button.big{
  transition:width 125ms cubic-bezier(0,0,0.5,1);
  width:48px;
  height:48px;
}
md-outlined-icon-button.big:hover, md-filled-tonal-icon-button.big:hover{
  width:64px;
}

