@charset "UTF-8";

* {
  margin: 0;
  border: 0;
  padding: 0;
  outline: 0;

  list-style: none;
  text-decoration: none;
  text-rendering: optimizeLegibility;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-font-smoothing: subpixel-antialiased;
  -moz-font-smoothing: subpixel-antialiased;
  -ms-font-smoothing: subpixel-antialiased;
  -o-font-smoothing: subpixel-antialiased;

  -webkit-user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

*:not(:defined) {
  display: none;
}

:root {
  --accent: #63b3f7;
  --bg: #868c97;
}

body {
  background-color: var(--bg);
  background-image: url("/src/img/banners/bg-global.jpg");
  height: 100vh;
  width: 100%;
  display: flex;
  overflow: hidden;
}

::selection {
  background: none;
}

todo-list {
  position: relative;
  min-width: 350px;
  height: 100%;
}

todo-list::after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 4;
}

tabs-list {
  position: relative;
  width: 100%;
  height: 100%;
}
