/* BASE STYLES */
:root {
    --clr-dark: #0f172a;
    --clr-light: #f1f5f9;
    --clr-accent: steelblue;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  .body {
    margin: 100px;
    padding: 0;
    line-height: 1.5;
    word-spacing: 1.4px;
    font-family: "Roboto", sans-serif;
    color: var(--clr-dark);
    background-color: var(--clr-light);
  }

  .sidebar2 {
    margin: 0px;
    width: 100%;
    border: 0px solid var(--clr-dark);
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: flex-end;
  }
  
  .header {
    position: fixed;
    top: 0px;
    left: 0px;
    border-radius: 0;
    margin: 0px;
    width: 100%;
    height: 100px;
    z-index: 1;
    border: 0px solid var(--clr-dark);
    background-color: steelblue;
  }
  
  .relations {
    position: relative;
    margin: 0px;
    width: 100%;
    border: 0px solid var(--clr-dark);
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: top;
  }
  
  .relationcolumn {
    text-align: center;
    margin: 1px;
    width: 250px;
    border: 0px solid var(--clr-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .relationitem {
    margin: 0px;
    width: 250px;
    /* min-height: 60px; */
    background-color: steelblue;
    padding: 5px;
    font-weight: auto;
    color: var(--clr-light); 
    text-align: center;
    border: 2px solid var(--clr-dark);
    border-radius: 10px;
  }

  .relationbutton {
    margin: 0px;
    width: 250px;
    height: 36px;
    background-color: steelblue;
    padding: 5px;
    font-weight: auto;
    color: var(--clr-light);
    text-align: center;
    border: 2px solid var(--clr-dark);
    border-radius: 10px;
  }

  .newrelationbutton {
    
    padding-top: 50px;
    width: 220px;
    height: 60px;
    background-color: steelblue;
    padding: 1em;
    font-weight: auto;
    color: var(--clr-light);
    text-align: center;
    border: 2px solid var(--clr-dark);
    border-radius: 10px;
  }

    .soverigentylevel {
    position: relative;
    margin: 0px;
    width: 100px;
    /* height: ; */
    background-color: steelblue;
    padding: 1em;
    font-weight: 600;
    color: var(--clr-light);
    text-align: center;
    border: 2px solid var(--clr-dark);
    border-radius: 10px;
  }

  /* END OF BASE STYLES */
  .item-1 {
    position: absolute;
    border: 20px;
    z-index: 1;
    top: -25px;
  }
  
  .item-2 {
    position: absolute;
    border: 20px;
    z-index: -1;
    left: -90px;
    bottom: -2px;
    margin: 0px;
    width: 100px;
    height: 150px;
    background-color: white;
    padding: 1em;
    font-weight: 700;
    color: var(--clr-dark);
    text-align: top;
    border-radius: 0px;
  }
  
  .graph-container {
    position: relative;
    width: 400px;
    height: 300px;
    border: 5px solid #ccc;
    margin: 50px auto;
  }
  
  .data-point {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: steelblue;
    border-radius: 50%;
  }
  
  
  .bar-chart {
    width: 400px;
    height: 300px;
    border: 1px solid #ccc;
    margin: 50px auto;
    position: relative;
  }
  
  .bar {
    position: absolute;
    bottom: 0;
    width: 5px; /* Width of each bar */
    background-color: steelblue; /* Change this to desired bar color */
  }


