body {
    font-family:  Arial, Helvetica, sans-serif;
  }

.container{
  display: inline-block;
}
.typed-out{
  overflow: hidden;
  white-space: nowrap;
  animation: 
    typing 0.3s forwards;
  width: 0;
}
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

.pipeline_table {
    overflow: auto;
    width: 90%;
    word-wrap: break-word; /* Ensure long words are wrapped */
    white-space: normal; 
    
    
}

.pipeline_table table {
    border: 1px solid #b0b0b1;
    height: 100%;
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    border-spacing: 1px;
    text-align: left;
    border: none; 
}

.pipeline_table caption {
    caption-side: top;
    text-align: left;
}

.pipeline_table th {
    border: 1px solid #e3e3e3;
    background-color: #d1e3ff;
    color: #000000;
    padding: 5px;
}

.pipeline_table td {
    border: 1px solid #e3e3e3;
    padding: 5px;
}

.pipeline_table tr:nth-child(even) td {
    background-color: #ffffff;
    color: #000000;
}

.pipeline_table tr:nth-child(odd) td {
    background-color: #ffffff;
    color: #000000;
}


.cancel-link {
    text-decoration: none !important;
    
}

.highlight-red {
    color: crimson
}



.large-form {
    font-size: 1em; /* Adjust the font size as needed */
}

.large-input,
.large-select,
.large-button {
    font-size: 1em; /* Adjust the font size as needed */
    padding: 10px;    /* Adjust the padding as needed */
    margin: 20px 0;   /* Adjust the margin as needed */
}

.large-button {
    background-color: #3b5f98; /* Green background */
    color: white;              /* White text */
    border: none;              /* Remove border */
    cursor: pointer;           /* Pointer cursor on hover */
    width: 10%;               /* Full width button */
    height: 40px;              /* Adjust the height as needed */
    margin-left: 20px; 
    border-radius: 5px;
}


.large-button:hover {
    background-color: #45a049; /* Darker green on hover */
}

.user-info {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #f1f1f1; /* Optional: Add a background color */
    padding: 10px 10px;         /* Optional: Add some padding */
    border-radius: 5px;        /* Optional: Add rounded corners */
}

.tab {
    cursor: pointer;
    padding: 10px 20px;
    display: inline-block;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-bottom: none;
    border-top-left-radius: 5px;  /* Round top-left corner */
    border-top-right-radius: 5px; /* Round top-right corner */

}
.tab.active {
    background-color: #d1e3ff;
    border-bottom: 1px solid #fff;
    border-top-left-radius: 5px;  /* Round top-left corner */
    border-top-right-radius: 5px; /* Round top-right corner */
}
.tab-content {
    border: 1px solid #ccc;
    padding: 20px;
}



.login-container {
    text-align: center;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.login-input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
    font-size: 1.2em; /* Increase the font size */
}
.login-button {
    width: 100%;
    padding: 10px;
    background-color: #3b5f98;
    color: white;
    border: none;
    border-radius: 5px;
    height: 50px;
    cursor: pointer;
}
.login-button:hover {
    background-color: #45a049;
}

@keyframes fadeInUp {
    0% {
      transform: translateY(100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0%);
      opacity: 1;
    }
  }
  
  .fadeInUp-animation {
    animation: 1s fadeInUp;
  }

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 60%;
}

.modal-content textarea {
    width: 100%; /* Set textarea field size to be 90% of the modal width */
    height: auto; /* Allow height to adjust based on content */
    min-height: 5em; /* Set a minimum height for the textarea to be 5 lines */
}

.close {
    color: #727272;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/* Add this to your existing styles.css file */

/* Style for the comment_text input field */
.large-input-modal {
    width: 60%; /* Set the width to 100% of the modal content */
    padding: 10px; /* Add padding for better appearance */
    margin: 10px 0; /* Add margin for spacing */
    height: 40px;
    font-size: 1em; /* Adjust the font size as needed */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

/* Style for th,e submit button */
.large-button-modal {
    background-color: #3b5f98; /* Green background */
    color: white; /* White text */
    border: none; /* Remove border */
    cursor: pointer; /* Pointer cursor on hover */
    width: 20%; /* Full width button */
    height: 40px; /* Adjust the height as needed */
    margin-top: 10px; /* Add margin for spacing */
    border-radius: 5px; /* Rounded corners */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.large-button-modal:hover {
    background-color: #45a049; /* Darker green on hover */
}
