
:root {
  --color-background: rgb(235, 235, 235); /* canvas background */
  --color-header: rgb(255, 255, 255); /* header/footer background */
  --color-body: white; 
  --color-containers:rgb(121, 122, 146); 
  --color-container1:rgb(95, 4, 4); 
  --color-container2:rgb(61, 6, 40); 
  --color-container3:rgb(4, 6, 90); 
  --color-login-background: lightgrey;
  --color-border:lightgrey;
  --color-button1:rgb(30, 31, 87); /* button color */
  --color-button2: rgb(42, 43, 92); /* button color */
  --color-signed-in: lightgrey; 
  --color-signed-in2: darkgrey; 
  --color-text1: white;
  --color-text2: white;
  --color-text3: black;
  --color-pos: green;
  --color-neg: darkred;
} 
#root{
  background-color: var(--color-background);
}
html {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  background-color: var(--color-background);
}
body {
  background: var(--color-body);
  padding:12px 12px;
}

/*  standard large view settings ================ */

.login-wrapper {
  /* display: inline-flex; */
  background: var(--color-header);
  display: flex;
  flex-direction: row;
}
.login-sign-in {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-top: 0px;
  margin-right: 60px;
  margin-bottom: 10px;
}
.login-logo {
  width:300px;
  margin-left: 60px;
  margin-top: 30px;
}
.login-h3 {
  display: flex;
  margin:  55px 20px 20px 0px;
  width: 50px;
  font-size: 1.25rem;
  font-style: normal;
  text-align: center;
}
.login-username-passwrd{
  display: flex;
  flex-direction: column;
  margin-right: 10px;
  align-items: center;
}

.login-username-passwrd input {
  width: 90%;
  padding: 5px;
  margin: 5px 0;
  border: 1px solid darkgrey;
  border-radius: 5px;
  font-size: 16px;
}
.login-text {
  background-color: var(--color-login-background);
  border: 2px solid var(--color-border);
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.login-input {
  margin-left:  10px;
  width: 200px;
  font-size: .5rem;
}
.login-button {
  background-color: var(--color-button1); 
  color: var(--color-text1);
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease; 
}
.login-button:hover {
  background-color:var(--color-button2);
  transform: scale(1.15);
}
/* ==========================*/
.home-welcome {
  display: flex;
  justify-content: center;
  align-items: center;  
}
.home-welcome-text {
  background:  linear-gradient(300deg, var(--color-container1),  var(--color-container2),  var(--color-container3));
  width: 900px;   
  color: var(--color-text1);
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 40px;
  padding: 40px 70px 40px 70px;
}
/* ==========================*/
.home-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
}
.home-desc-block {
  background:  linear-gradient(300deg, var(--color-container1),  var(--color-container2),  var(--color-container3));
  color: var(--color-text1);
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  align-items: center;
  padding: 20px 20px 20px 10px;

}
.home-desc {
  max-width: 600px;
  width: 70%;
  font-weight: 500;
  margin-left: 50px;
  font-size: 20px;
}
.home-img {
  max-width: 300px;
  width: 40%;
  margin-left: 20px;
  justify-items:right;
}
.home-img-info {
  max-width: 100%;
  height: auto;
  opacity: 0.9;
  margin-right:10px;
}
.home-img::before {
  content: "\1F6C8"; 
  font-size: 16px; 
  margin-right: 5px; 
  color: var(--color-info); 
}
.home-img[title]::before {
  font-weight: 700;
  font-size: 24px;
}
.home-signed-in {
  display: flex;
  flex-direction: column;
  align-items:flex-end;
  justify-content: center;
  margin-right: 60px;
  width: 90%;
}
.home-signed-in-img {
  width:200px;
  margin-left: 60px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.home-signed-in-symbol {
  width: 30px;
  height: 30px;
  background-color: var(--color-signed-in); 
  border-radius: 50%; 
  margin-left:10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text3);
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 4px 6px;
}
.home-signed-in-symbol:hover {
  background-color: var(--color-signed-in2); 
  cursor: pointer;
}
/* ==========================*/
.footer-container {
  display: flex;
  flex-direction: row;
  margin-left: auto;
  background: linear-gradient(300deg, var(--color-login1),  var(--color-login2),  var(--color-login3));
  justify-content: center;
  align-items: center; 
}
.footer-comment {
  display: flex;
  flex-direction: column;
  align-items: center; 
  margin-left: auto;
}  
.footer-text-name textarea {
  font-size: 16px;
  text-align:left;
  width: 600px;
  padding: 5px;
  margin: 5px 0;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  resize: none;
}
.footer-text-comment textarea {
  font-size: 16px;
  text-align:left;
  width: 800px;
  height: 100px;
  padding: 5px;
  margin: 5px 0;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  resize: none;
}
.footer-comment-button {
  background-color: var(--color-button1); 
  color: var(--color-text1);
  margin-top: 10px;
  margin-left: 700px;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease; 
}
.footer-comment-button:hover {
  background-color:var(--color-button2);
  transform: scale(1.15);
}
.footer-headline {
  display: flex;
  justify-content: center;
  align-items: center; 
  font-size: 32px;
  font-weight: 600;
}
/* ==========================*/
.mt-container {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  /* background: linear-gradient(300deg, rgb(140, 140, 150),  rgb(170, 170, 170),  rgb(57, 57, 58)); */
  justify-content: center;
  align-items: center; 
  margin-top: 20px;
  /* height:700px; */
}
.mt-label {
  display: flex;
  flex-direction: row;
  font-size: 48px;
  text-align:left; 
  align-items: center;
  font-weight:600;
  font-style: italic;
}
.mt-select {
  font-size: 32px;
  font-weight:550;
  text-align:left;
  width: 180px;
  height: 50px;
  padding: 5px;
  margin: 30px 0px;
  border: 1px solid var(--color-border);
  border-radius: 5px;
}
.mt-phrase textarea {
  font-size: 32px;
  text-align:left;
  width: 1000px;
  height: 100px;
  padding: 5px;
  margin: 5px 0;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  resize: none;
}
.mt-button {
  background-color: var(--color-button1); 
  color: var(--color-text1);
  margin-top: 10px;
  margin-left: 550px;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease; 
}
.mt-button-clear {
  background-color: var(--color-button1); 
  color: var(--color-text1);
  margin-top: 10px;
  margin-right: 300px;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease; 
}
.mt-button-clear:hover  {
  background-color: var(--color-button2);
  transform: scale(1.15);
}
.mt-button:hover {
  background-color: var(--color-button2);
  transform: scale(1.15);
}
.mt-container .news-assistant-container  {
  height: 1000px;
}
.mt-container .assistant-answer {
  max-width: 800px;
  font-size: 32px;
  font-weight: 400;
  padding-left: 10px;
  padding-right: 10px;
}
/* ==========================*/
.news-container {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  justify-content: center;
  align-items: center; 
  margin-top: 50px;
  resize: none;
  margin-top: 60px;
}
.news-container textarea {
  font-size: 24px;
  text-align:left;
  width: 1000px;
  height: 100px;
  padding: 5px;
  margin: 5px 0;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  resize: none;
}
.news-container #assistant-headline {
  font-size: 24px;
  font-style: italic;
  font-weight:600;
  align-items: center;
  margin-bottom: 20px;
}
.news-container .news-assistant-container {
  height: 1200px;
}
.news-container .assistant-answer {
  max-width: 800px;
  font-size: 20px;
  font-weight: 400;
  padding-left: 10px;
  padding-right: 10px;
}
/*  ================ */
.app-container {
  display: grid;
  background-color:var(--color-containers);
  grid-template-columns: 2fr .75fr .5fr .75fr .5fr .5fr;
  grid-template-rows:  80px 70px 280px 125px 300px;
  border-radius: 1%;
}
/*  ================ */

.header-section {
  grid-area: 1/1/2/2;
  display: flex;
  margin: 0px;
  background-color: var(--color-background);
  /* border-radius: 1%; */
}
.toggle-section {
  grid-area: 1/6/2/7;
  margin: 0px;
  background-color: var(--color-background);
  /* border-radius: 1%; */
}
#symbol-field-label {
  margin-top: 25px;
  margin-left: 20px;
}
#symbol-field {
  color:black;
  background-color:  var(--color-login-background);
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  padding-left: 30px;
  width: 250px;
  height: 35px;
  margin-left: 20px;
  margin-right: 0px;
  font-size: 20px;
  font-weight: 400;
}
.first-section {
  grid-area: 2/1/3/2;
  display: flex;
  flex-direction: row;
  margin: 5px;
  justify-content:center;
  align-items: center;
  background-color:  var(--color-background);
  border: 2px solid  var(--color-border);
  /* border-radius: 15px; */
  font-size: 14px;
  color:  var(--color-text3);
}
.logo-section{
  padding: 20px;
  background-color: var(--color-background);
}
#CRL {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
}
.second-section {
  grid-area: 2/2/4/3;
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
  margin: 5px;
  border: 2px solid var(--color-border);
  background-color:var(--color-background);
  /* border-radius: 5%; */
}
#quote-sym {
  font-size: 16px;
  font-weight:400;
  margin: 5px;
}
#quote-price {
  font-size: 46px;
  font-weight:600;
  margin: 5px;
}
#quote-change-pos {
  color: green;
}
#quote-change-neg {
  color: red;
}
.quote-change {
  justify-self: center;
  font-size: 20px;
  font-weight:500;
  margin: 5px;
  margin-bottom: 40px;
}
.quote-highlow{
  justify-self: center;
  font-size: 14px;
  font-weight:400;
  margin: 2px;
}
.quote-perc{
  font-size: 16px;
  font-weight:400;
  margin: 6px;
  color: darkblue;
}
#company-image {
  /* border: 1px solid #242323;
  border-radius: 0px; */
  padding: 0px;
  width: 25px;
}
#assistant-answer-sources {
  font-size: .8rem;
}
.second-sectionb {
  grid-area: 3/1/5/2;
  margin-left: 5px;
  margin-right: 5px;
  padding-left: 10px;
  background-color:var(--color-background);
  border: 2px solid var(--color-border);
  /* border-radius: 15px; */
  font-size: .78rem;
}
.description-field{
  margin: 10px;
}
#description-field-text{
  font-weight: 400;
  font-size: 16px;
}
#description-field-text1{
  font-weight: 400;
  font-size: 16px;
}
.third-section {
  grid-area: 2/3/5/7;
  margin: 5px;
  background-color: var(--color-background);
}
.fourth-section {
  grid-area: 5/3/6/7;
  margin: 5px;
  background-color:var(--color-background);
}
.sixth-section {
  grid-area: 5/1/5/2;
  display:  flex;
  flex-direction: row;
  margin: 5px;
  background-color: var(--color-background);
}
.sixth-one {
  flex: auto;
  margin: 5px;
}
.sixth-two {
  flex: auto;
  margin: 5px;
}
.sixth-section-two {
  grid-area: 4/2/6/3;
  display:  flex;
  flex-direction: column;
  margin: 5px;
  padding-left: 5px;
  border: 2px solid var(--color-border);
  /* border-radius: 15px; */
  font-size: .8rem;
  background-color:var(--color-background);
  align-items: center;
}
.sixth-top {
  display: flex;
}
.sixth-bottom {
  display: flex;
}
.top-list{
  list-style-type: none;
  color: var(--color-pos);
  font-size: 1rem;
  font-weight:500;
  text-align: left;
  padding-inline: 5px;
}
.bottom-list{
  list-style-type: none;
  color: var(--color-neg);
  font-size: 1rem;
  font-weight:500;
  text-align: left;
  padding-inline: 5px;
}
.li-change-pos {
  color: var(--color-pos);
  font-size: 14px;
  font-weight:400;
}
.li-change-neg {
  color: var(--color-neg);
  font-size: 14px;
  font-weight:400;
}

.footer-section {
  grid-area: 6/1/7/7;
  margin: 5px;
  background-color: var(--color-background);
}
.toggle-section {
  padding-left: 0x;
  padding-top: 10px;
}
.react-switch-checkbox {
  height: 0;
  width: 0;
  visibility: hidden;
}

.react-switch-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 140px;
  height: 35px;
  background: var(--color-text1);
  border-radius: 100px;
  position: relative;
  transition: background-color .2s;
}

.react-switch-label .react-switch-button {
  content: '';
  position: absolute;
  top: 0px;
  left: 2px;
  width: 35px;
  height: 35px;
  border-radius: 35px;
  transition: 0.2s;
  background: rgb(253, 243, 243);
  border: 2px solid black;
  box-shadow: 0 0 0 0 rgba(10, 10, 10, 0.29);
}

.react-switch-checkbox:checked + .react-switch-label .react-switch-button {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}

.react-switch-label:active .react-switch-button {
  width: 60px;
}
#switch-daily {
  justify-content: left;
  padding-left: 15px;
  margin-left: 5px;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}
#switch-intra {
  justify-content: right;
  padding-right: 15px;
  margin-right: 5px;
  color: whitesmoke;
  font-weight: bold;
  font-size: 1.2rem;
}
.header-fill{
  grid-area: 1/3/2/6;
  background-color: var(--color-background)
}


.ai-tools-section1 {
  grid-area: 2/1/4/3;
  margin-left: 5px;
  margin-top: 5px;
  padding-left: 10px;
  background-color:rgb(253, 243, 243);
  border: 2px solid black;
  border-radius: 15px;
  font-size: .78rem;
}

.ai-tools-section2 {
  grid-area: 2/3/4/7;
  margin-left: 5px;
  margin-top: 5px;
  padding-left: 10px;
  background-color:rgb(253, 243, 243);
  border: 2px solid black;
  border-radius: 15px;
  font-size: .78rem;
}


.ai-tools-section3 {
  grid-area: 4/1/6/3;
  margin-left: 5px;
  margin-top: 5px;
  padding-left: 10px;
  padding-left: 10px;
  background-color:rgb(253, 243, 243);
  border: 2px solid black;
  border-radius: 15px;
  font-size: .78rem;
}

.ai-tools-section4 {
  grid-area: 4/3/6/7;
  margin-left: 5px;
  margin-top: 5px;
  padding-left: 10px;
  background-color:rgb(253, 243, 243);
  border: 2px solid black;
  border-radius: 15px;
  font-size: .78rem;
}

/*  ================ */
/*  ================ */
/*  ================ */

/*  set small view settings ================ */
@media only screen and (max-width: 1075px) {
  .app-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows:  50px 50px 50px 100px 260px 600px ;
    border-radius: 1%;
  }
  /*  ================ */
  .login-wrapper {
    display: flex;
    flex-direction: row;
  }
  .login-sign-in {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-top: 40px;
    margin-right: 40px;
    margin-bottom: 10px;
  }
  .login-logo {
    width:200px;
    margin-left: 40px;
    margin-top: 40px;
  }
  .login-h3 {
    display: flex;
    margin:  55px 20px 20px 0px;
    width: 50px;
    font-size: 1.25rem;
    font-style: normal;
    text-align: center;
  }
  .login-username-passwrd{
    display: flex;
    flex-direction: column;
    margin-right: 10px;
    align-items: center;
  }
  .login-username-passwrd input {
    width: 90%;
    padding: 5px;
    margin: 5px 0;
    border-radius: 5px;
    font-size: 12px;
  }
  .login-text {
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 6px;
    text-align: center;
  }
  .login-input {
    margin-left:  10px;
    width: 100px;
    font-size: 12px;
  }
  .login-button {
    margin-top: 5px;
    padding: 5px 10px;
    font-size: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease; 
  }
  .login-button:hover {
    transform: scale(1.15);
  }
  /* ==========================*/
  .home-welcome {
    display: flex;
    justify-content: center;
    align-items: center;  
  }
  .home-welcome-text {
    width: 500px;
    font-weight: 300;
    /* font-size: 16px; */
    margin-bottom: 50px;
  }
  /* ==========================*/
  .home-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
  }
  .home-desc-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
    align-items: center;
  }
  .home-desc {
    flex: 1;
    max-width: 600px;
    width: 90%;
    font-weight: 500;
    /* font-size: 14px; */
    margin-left: 5px;
    margin-right:10px;
  }
  .home-img {
    flex: 1;
    width: 30%;
    margin-left: 5px;
    margin-right: 45px; 
    justify-items:right;
  }
  .home-img-info::before {
    content: "\1F6C8"; 
    /* font-size: 14px;  */
    margin-right: 4px; 

  }
  .home-img[title]::before {
    font-weight: 700;
    /* font-size: 10px; */
  }
  .home-signed-in {
    display: flex;
    flex-direction: column;
    align-items:flex-end;
    justify-content: center;
    margin-right: 15px;
    width: 90%;
    /* font-size: 10px */
  }
  .home-signed-in-img {
    width:200px;
    margin-left: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .home-signed-in-symbol {
    width: 25px;
    height: 25px;
    background-color: var(--color-signed-in); 
    border-radius: 50%; 
    margin-left:5px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 6px;
    }
  .home-signed-in-symbol:hover {
    cursor: pointer;
  }
  /* ==========================*/
  .footer-container {
    background-color: var(--color-signed-in2); 
    display: flex;
    flex-direction: row;
    margin-left: auto;
    justify-content: center;
    align-items: center; 
  }
  .footer-comment {
    display: flex;
    flex-direction: column;
    align-items: center; 
    margin-left: auto;
  }  
  .footer-text-name textarea {
    font-size: 12px;
    text-align:left;
    width: 300px;
    padding: 5px;
    margin: 5px 0;
    border-radius: 5px;
  }
  .footer-text-comment textarea {
    font-size: 12px;
    text-align:left;
    width: 400px;
    height: 50px;
    padding: 5px;
    margin: 5px 0;
    border: 1px solid darkgrey;
    border-radius: 5px;
  }
  .footer-comment-button {
    margin-top: 10px;
    margin-left: 350px;
    margin-bottom: 5px;
    padding: 5px 10px;
    font-size: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease; 
  }
  .footer-headline {
    display: flex;
    justify-content: center;
    align-items: center; 
    font-size: 18px;
    font-weight: 500;
  }

  /* ==========================*/

  .mt-container {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    justify-content: center;
    align-items: center; 
    margin-top: 30px;
  }
  .mt-label {
    display: flex;
    flex-direction: row;
    font-size: 32px;
    text-align:left; 
    align-items: center;
    font-weight:500;
    font-style: italic;
  }
  .mt-select {
    font-size: 20px;
    font-weight:550;
    text-align:left;
    width: 110px;
    height: 40px;
    padding: 5px;
    margin: 15px 0px;
    border-radius: 5px;
  }
  .mt-phrase textarea {
    font-size: 24px;
    text-align:left;
    width: 400px;
    height: 80px;
    padding: 5px;
    margin: 5px 0;
    border-radius: 5px;
    resize: none;
  }
  .mt-button {
    margin-top: 10px;
    margin-left: 175px;
    margin-bottom: 5px;
    padding: 5px 10px;
    font-size: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease; 
  }
  .mt-button-clear {
    margin-top: 10px;
    margin-right: 150px;
    margin-bottom: 5px;
    padding: 5px 10px;
    font-size: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease; 
  }
  .mt-container .news-assistant-container {
    height: 300px;
  }
  /* .assistant-answer {
    font-size: 16px;
    font-weight: 400;
  } */
  #assistant-answer {
    max-width: 500px;
    font-size: 18px;
  }
  /* ==========================*/
  .news-container {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    justify-content: center;
    align-items: center; 
    margin-top: 50px;
    resize: none;
  }
  .news-container textarea {
    font-size: 24px;
    text-align:left;
    width: 400px;
    height: 60px;
    padding: 5px;
    margin: 5px 0;
    border-radius: 5px;
    resize: none;
  }
  .news-container .assistant-headline {
    /* font-size: 24px; */
    font-style: italic;
    font-weight:600;
    align-items: center;
    margin-bottom: 25px;
  }
  .news-container .news-assistant-container {
    height: 725px;
  }
  /* ==========================*/
  .header-section {
    grid-area: 2/1/3/2;
    display: flex;
    margin: 0px;
    border-radius: 1%;
  }
  .toggle-section {
    grid-area: 2/2/3/3;
    margin: 0px;
    border-radius: 1%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content:auto;
  }
  #symbol-field-label {
    margin-top: 5px;
    margin-left: 0px;
  }
  #symbol-field {
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding-left: 20px;
    width: 120px;
    height: 25px;
    margin-left: 20px;
    margin-right: 0px;
    font-size: 12px;
    font-weight: bold;
  }

  .first-section {
    grid-area: 3/1/4/3;
    display: flex;
    flex-direction: row;
    margin: 2px;
    justify-content:center;
    align-items: center;
    border: 2px solid black;
    /* border-radius: 15px; */
    font-size: 1.2rem;
  }
  .logo-section{
    background-color: var(--color-background);
    grid-area: 1/1/2/3;
    display: flex;
    flex-direction: column;
    justify-content:auto;
    align-items: center;
  }
  #CRL {
    height: 100px;
    width: 150px;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
  }
  .second-section {
    grid-area: 4/1/5/3;
    display: flex;
    flex-direction: row;
    justify-content:center;
    align-items: center;
    margin: 5px;
    /* border-radius: 5%; */
  }
  .real-time-quote-container {
    display: flex;
    flex-direction: row;
  }
  #quote-sym {
    /* font-size: 10px; */
    font-weight:200;
    justify-self:center;
    margin: 2px;
  }
  #quote-price {
    /* font-size: 16px; */
    font-weight:400;
    justify-self:center;
    margin: 2px;
  }
  .quote-change {
    /* font-size: 14px; */
    font-weight:500;
    justify-self:center;
    margin: 2px;
  }
  .quote-highlow{
    /* font-size: 12px; */
    font-weight:300;
    justify-self:center;
    margin: 1px;
  }
  .quote-perc{
    /* font-size: 12px; */
    font-weight:400;
    justify-self:center;
    margin: 4px;
  }

  #company-image {
    padding: 0px;
    width: 30px;
  }
  #assistant-answer-sources {
    font-size: .9rem;
  }
  .second-sectionb {
    grid-area: 6/1/7/3;
    margin-left: 2px;
    padding-left: 5px;
    /* border-radius: 15px; */
    /* font-size: 14px; */
    font-weight: 300;
  }
  .description-field{
    margin: 2px;
  }
  #description-field-text{
    font-size: 2px;
  }
  
  #description-field-text1{
    font-size: 24px;
  }  
  .third-section {
    grid-area: 5/1/6/3;
    margin: 5px;
  }
  .fourth-section {
    grid-area: 8/1/9/3;
    margin: 5px;
  }
  .sixth-section {
    grid-area: 7/1/8/3;
    display:  flex;
    flex-direction: row;
    margin: 5px;
  }
  .sixth-one {
    flex: auto;
    margin: 2px;
  }
  .sixth-two {
    flex: auto;
    margin: 2px;
  }
  .sixth-section-two {
    grid-area: 5/2/6/3;
    display:  flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 5px;
    /* border-radius: 15px; */
    font-size: .9rem;
  }
  .sixth-top {
    align-items: center;
    justify-content: top;
  }
  .sixth-bottom {
    align-items: center;
    justify-content: top;
  }
  .top-list{
    list-style-type: none;
    font-size: 1.1rem;
    font-weight:bold;
  }
  .bottom-list{
    /* padding-left: 46px; */
    list-style-type: none; 
    font-size: 1.1rem;
    font-weight:bold;
  }
  .li-change-pos {
    font-size: 1rem;
    font-weight:bold;
  }
  .li-change-neg {
    font-size: 1rem;
    font-weight:bold;
  }
  #assistant-headline {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: bold;
    align-items: center;
  }
  .footer-section {
    grid-area: 8/1/9/3;
    margin: 5px;
  }
  .react-switch-checkbox {
    height: 0;
    width: 0;
    visibility: hidden;
  }
  .react-switch-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    width: 100px;
    height: 25px;
    border-radius: 100px;
    position: relative;
    transition: background-color .2s;
  }
  .react-switch-label .react-switch-button {
    content: '';
    position: absolute;
    top: 0px;
    left: 2px;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    transition: 0.2s;
  }
  .react-switch-checkbox:checked + .react-switch-label .react-switch-button {
    left: calc(100% - 2px);
    transform: translateX(-100%);
  }
  .react-switch-label:active .react-switch-button {
    width: 50px;
  }
  #switch-daily {
    justify-content: left;
    padding-left: 15px;
    margin-left: 5px;
    font-weight: bold;
    font-size: .8rem;
  }
  #switch-intra {
    justify-content: right;
    padding-right: 15px;
    margin-right: 5px;
    font-weight: bold;
    font-size: .8rem;
  }
  .ai-tools-section1 {
    grid-area: 2/1/5/3;
    margin-left: 5px;
    margin-top: 5px;
    padding-left: 10px;
    border-radius: 15px;
    font-size: .9rem;
  }
  .ai-tools-section2 {
    grid-area: 5/1/6/3;
    margin-left: 5px;
    margin-top: 5px;
    padding-left: 10px;
    border-radius: 15px;
    font-size: .9rem;
  }
  .ai-tools-section3 {
    grid-area:  6/1/6/3;
    margin-left: 5px;
    margin-top: 5px;
    padding-left: 10px;
    padding-left: 10px;
    border-radius: 15px;
    font-size: .9rem;
  }
  .ai-tools-section4 {
    grid-area:  8/1/9/3;
    margin-left: 5px;
    margin-top: 5px;
    padding-left: 10px;
    border-radius: 15px;
    font-size: .9rem;
  }
}
/*  ================ */