/* General Styling */

body {
margin: 0;
font-family: 'Noto Sans', sans-serif;
font-size: 18px;
font-weight: 400;
color: #333;
text-align: left;
background-color: #1d1d1b;
text-align: left;
text-justify: inter-word;

}

.dash-btn {
background: #6c5ce7;
border: none;
color: white;
padding: 5px;
border-radius: 8px;
cursor: pointer;
width: 100%;
height: 80px;
font-weight: bold;
}
#button-menu {
width: 50px;
height: 50px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 6px;
border: none;
background: violet;
cursor: pointer;
padding: 0;
border-radius: 10px;
}

.bar {
display: block;
width: 25px;
height: 3px;
margin: 5px auto;
background-color: #333;
border-radius: 2px;
}

#dateInput {
padding: 10px;
font-size: 16px;
width: 200px;
text-align: center;
cursor: pointer;
}

.calendar {
display: none;
position: absolute;
background-color: white;
border: 1px solid #ddd;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
margin-top: 5px;
width: 300px;
}

.calendar-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
font-weight: bold;
}

.calendar-days {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 5px;
}

.calendar-days div {
text-align: center;
padding: 5px;
cursor: pointer;
}

.calendar-days div:hover {
background-color: #f0f0f0;
}

.calendar-days .disabled {
color: #ccc;
pointer-events: none;
}

.action-btn {
background: #6c5ce7;
border: none;
color: white;
padding: 10px;
border-radius: 8px;
cursor: pointer;
height: 60px;
font-weight: bold;
}

.action-button-small {
background-color: #e0e0e0; 
color: #666;
padding: 10px;
border: none;
border-radius: 8px;
cursor: pointer;
font-size: 12px;
font-weight: bold;
transition: background-color 0.3s ease;
}

.action-button-small:hover {
background-color: #d5d5d5;
}

.action-button-small:active {
transform: scale(0.98);
}

.button-nav {
padding:0px;
width: 35px;
height: 35px;
background-color: #D69A2D;;
color: #fff;
border-radius: 5px;
border: 0px;
text-align: center;
cursor:pointer;
outline: none;
font-size: 22px;
line-height: 22px;
}

.button-nav:hover {
box-shadow: 0 0 5px #D69A2D;
}

button.active.focus, button.active:focus,
button.focus, button:active.focus, 
button:active:focus, button:focus {
outline: none;
box-shadow: none;
}

#navigation-scroll {

position: fixed;
top:0px;
background-color: #1d1d1b;;
width: 100%;
height:90px;
z-index: 300;
padding:0px;
font-size: 25px;
padding-left: 15px;
padding-right: 15px;
}

#header-logo {

max-width: 205px; 
width: 100%;
}

#header-content {

 max-width: 1300px;
 margin: auto;
 padding:15px;

}
#page-content {

max-width: 1300px;
margin: auto;
padding-top: 40px;
padding-left:0px;
padding-right:0px;

 }

@media screen and (max-width: 800px) {

#content {

margin-top: 50px;
width: 100%;
background-color: #1d1d1b;
padding:5px;

}

#header-content {
padding-left:15px; 
padding-right:15px;
}

}

@media screen and (min-width: 801px) {

#content {

margin-top: 50px;
width: 100%;
background-color: #1d1d1b;
padding:5px;

}

}

#call-transcript-wrapper {
display: none;
margin-top: 40px;
padding: 0px;
}

@media (min-width: 992px) {
#call-transcript-wrapper {
display: block;
margin-top: 0;
padding: 0px 0px 0px 15px;
}
}

.button-demo {
  width:100%; 
  background-color: #348feb;  
  min-height: 80px;  
  border: 0px; 
  font-weight:bold; 
  font-size: 18px
}

#call-transcript {
  scrollbar-width: thin;                /* Firefox */
  scrollbar-color: black transparent;   /* Firefox */
}

/* Chrome, Edge, Safari */
#call-transcript::-webkit-scrollbar {
  width: 6px;
}

#call-transcript::-webkit-scrollbar-track {
  background: transparent;
}

#call-transcript::-webkit-scrollbar-thumb {
  background-color: black;
  border-radius: 3px;
}
