:root {
    --default-font-family: "Verdana", sans-serif;
    --defatul-font-size: 1.25rem;

    --theme_gray: #C4C4C4;
    --theme_gray_light: #f9f9f9;
    --theme_white: #ffffff;
    --theme_black: #000000;
    --theme_light_blue: #1281AE;
    --theme_dark_blue: #082A5B;
    --theme_green: #00C489;
    --theme_green_hoover: #1cdfa4;
    --theme_dark_yellow: #FCDC4C;
    --theme_red: #a20404;


    --theme_darkmode_gray: #1c1c1c;
    --theme_darkmode_gray_light: #b7b7b7;
    --theme_darkmode_white: #d6d6d6e1;
    --theme_darkmode_black: #0c0606e1;
    --theme_darkmode_light_blue: #bdecff;
    --theme_darkmode_dark_blue: #d4e6ff;
    --theme_darkmode_green: #7dffd8;
    --theme_darkmode_green_hoover: #1cdfa4;
    --theme_darkmode_dark_yellow: #FCDC4C;
    --theme_darkmode_red: #ffa0a0;

}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h1{
    font-weight: bold;
    font-size: 3rem;
    color: var(--theme_dark_blue);
}

h1.dark-mode{
    color: var(--theme_darkmode_white);
}

h2{
  font-size: 2.5rem;
  font-weight: lighter;
  color: var(--theme_light_blue);
}

h2.dark-mode{
    color: var(--theme_darkmode_white);
}

h3{
  font-weight: bold;
  font-size: 2rem;
  color: var(--theme_dark_blue);
}

h3.dark-mode{
    color: var(--theme_darkmode_white);
}

h4{
    font-size: 1.5rem;
    color: var(--theme_dark_blue);
}

h4.dark-mode{
    color: var(--theme_darkmode_white);
}

h5{
  font-weight: bold;
  font-size: 1.25rem;
  color: var(--theme_light_blue);
}

h4.dark-mode{
    color: var(--theme_darkmode_white);
}

h6{
  font-weight: bold;
  font-size: 1rem;
  color: var(--theme_dark_blue);
}

h6.dark-mode{
    color: var(--theme_darkmode_white);
}

a{
  color: var(--theme_light_blue);
}

a.dark-mode{
    color: var(--theme_darkmode_gray_light);
}

* {
    box-sizing: border-box;
}

/* ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
} */

img {
    max-width: 100%;
    height: auto;
    display: block;
  }


button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

body {
    background: var(--theme_white);
    color: var(--theme_black);
    font-family: var(--default-font-family);
    font-size: var(--default-font-size);
    margin: 0;
    padding:0;
  }

body.dark-mode {
    background: var(--theme_darkmode_black);
    color: var(--theme_darkmode_white);
  }

  hr{
    border: 0;
    height: 3px;
    background-color: var(--theme_green);
    margin: 5px 0;
  }

label{
    color: var(--theme_light_blue);
    font-size: 15px;
    float: left;
    margin: 20px 0 5px 0;
}

label.dark-mode{
    color: var(--theme_darkmode_white);
}

input[type=text], input[type=password], select, option{
    width: 100%;
    height: 42px;
    border: 2px solid var(--theme_gray);
    border-radius: 4px;
    padding: 0 10px;
}


option:hover,
option:focus {
    background: var(--theme_green);
  }

textarea {
    font-family: 'Courier New', Courier, monospace;
    width: 100%;
    min-height: 400px;
    height: auto;
    padding: 10px;
    box-sizing: border-box;
    border: 2px solid var(--theme_gray);
    border-radius: 4px;
    background-color: var(--theme_white);
    font-size: 1.25rem;
    resize:vertical;

  }

  input[type="time"]::-webkit-clear-button {
    display: none;
}

  input[type=submit]{
    margin: 10px 0;
    font-weight: bold;
    background: var(--theme_dark_blue);
    color: var(--theme_white);
    height: 42px;
    padding: 0 20px;
    cursor: pointer;
    border: 2px transparent;
    border-radius: 4px;
  }

button{
  margin: 10px 0;
  font-weight: bold;
  background: var(--theme_light_blue);
  color: var(--theme_white);
  height: 42px;
  padding: 0 20px;
  cursor: pointer;
  border: 2px transparent;
  border-radius: 4px;
}

  .container_pill{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
  }

  .list_pill{
    padding: 10px 20px;
    margin: 5px 10px 5px 0;
    background-color: var(--theme_green);
    font-size: 13px;
    color: var(--theme_black);
    border-radius: 4px;
    width: max-content;
  }

  .list_pill a{
    color: var(--theme_black);
    text-decoration: none;
  }

  .list_pill:hover{
    background-color: var(--theme_green_hoover);
  }

  .list_pill form{
    display: inline;
    background-color: inherit;
    margin: 0;
    padding: 0;
  }

  .list_pill input[type=submit]{
    background-color: inherit;
    margin: 0;
    padding: 0;
    height: auto;
    color: var(--theme_black);
  }

  .delete_button button, .delete_button input[type=submit]{
  background-color: var(--theme_red);
  color: var(--theme_white);
}


  form{
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
  }

.main_container{
    display: flex;
    min-height:800px;
    flex-direction: column;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.inside_container{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
}

.left_container{
    display: flex;
    flex-direction: column;
    width: 600px;
    padding: 10px;
    flex-grow: 2;
    margin: 0 20px 0 0;
}

.right_container{
    display: flex;
    flex-direction: column;
    padding: 10px;
    max-width: 400px;
    width: 100%;
}

.content_md{
  min-height: 400px;
}

.content_md p{
  margin: 20px 0;
  line-height: 1.75;
}

.login_box{
  display: flex;
  max-width: 300px;
}

.center_frame{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.small_link form{
  display: inline-block;
  margin: 0;
  padding: 0;
}

.small_link input[type=submit]{
  display: inline-block;
    background-color: transparent;
    width: max-content;
    color: var(--theme_light_blue);
    padding: 0;
    margin: 0;
    height: auto;
    text-decoration: underline;
    font-weight: lighter;
}

.header{
    padding: 10px 20px;
    margin: 0 0 20px 0;
    background-color: var(--theme_green);
    color: var(--theme_white);
    text-align: right;
}

.header a{
    color: var(--theme_white);
    text-decoration: none;
    font-weight: bold;

}

.header a:hover{
    color: var(--theme_dark_blue);
}

.nav{
  display: flex;
  justify-content: flex-end;
}

.nav ul{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}



.footer{
    padding: 10px 20px;
    margin: 20px 0 0 0;
    background-color: var(--theme_green);
    color: var(--theme_white);
    text-align: center;
}

.footer_links ul{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  list-style: none;
  padding: 0;
}

.footer_links a{
  color: var(--theme_white);
  text-decoration: none;
}

.footer_links a:hover{
  font-weight: bold;
}

.direction_btn input[type=submit]{
  width: max-content;
  background-color: var(--theme_light_blue);
  color: var(--theme_white);
  margin: 2px;
  font-size: x-small;
  padding: 5px;
  height: auto;
  cursor: pointer;
  min-width: 25px;
}

.verticaly_centered{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.box_rows{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 5px 0;
  gap: 5px;
}

.box_columns{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px 0;
}