/* styles.css */


body {
    overflow-y: scroll;
    padding: 20px;  /* Adjust this value based on your header height */
    font-family: sans-serif;
    background-color: white;
    color: #333
}

h1, h2, h3, h4, h5, h6 {
    color: #333
}

.app-header {
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.header-controls {
    display: flex;
    align-items: center;
    overflow: hidden;  /* This line ensures the div doesn't overflow its contents */
}

.app-header .app-header-title {
    font-size: 22px;
}

.topButtons {
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.comments {
    display: flex;
    justify-content: flex-end; /* Aligns children to the right */
    align-items: center; /* Centers children vertically */
    width: 100%; /* Ensures the container takes full width */
    gap: 10px; /* Optional: Adds space between children */
}

#comment-input {
    flex-grow: 1; /* Allows the input to grow and fill available space */
}

.console-btn {
    display: inline-block;
    padding: 10px 15px;
    border: none;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.console-btn:hover {
    background-color: #0056b3;
}
.downloads-container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  gap: 10px; /* Adjust the space between items */
}

.graph-title {
    font-size: 24px;
    color: hotpink;
}

#data-checklist{
    
}
.data-title {
    font-size: 28px;
    color: #000;
    padding-top: 50px;
    font-weight: 600;
}
#prev-day-button, #next-day-button {
    margin: 0 !important;
    padding: 0 !important;
    height: 36px!important;
}

#date-picker {
    margin: 0 !important;
    padding: 0 !important;
    width: 130px; 
    height: 30px;
}

#prev-day-button, #next-day-button {
    width: 20px;  /* This is just an example. Adjust as needed. */
}

#comment-input, #comment-button, #save-annotations-button, #reset-annotations-button{
    height: 30px!important;
}