.website_links_container {
    display: flex;
    flex-direction: column;
    background-color: #F9F9F9;
    padding: 20px;
    border-radius: 20px;
}

.website_links_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.custom_settings_container {
    display: flex;
    flex-direction: column;
    background-color: #F9F9F9;
    padding: 20px;
    border-radius: 20px;
}

.custom_settings_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.custom_settings_footer {
    display: none;
}

.website_links_footer {
    display: none;
    margin-top: 20px;
}

.website_links_header p {
    margin: 0; /* Remove default margin from the <p> element */
    margin-left: 10px;
}

.custom_settings_header p {
    margin: 0; /* Remove default margin from the <p> element */
    margin-left: 10px;
}

.dropZone {
    max-width: 100%;
    margin: 20px auto;
    padding: 40px;
    background-color: #f4f4f4;
    border-radius: 20px;
    border: 1px dashed #ccc;
    text-align: center;
    display: flex;
    /* Add display flex */
    flex-direction: column;
    /* Arrange elements vertically */
    justify-content: center;
    /* Center elements vertically */
    align-items: center;
    /* Center elements horizontally */
}

.fileUploadTitle {
    display: block;
    margin: 20px auto;
    font-size: 16px;
    color: #666;
}

.fileUploadSubTitle {
    margin: 10px 0;
    font-size: 14px;
    color: #999;
}

.dropZone.hover {
    border-color: #aaa;
}

.dropZone p {
    margin: 10px 0;
}

#filename {
    margin: 10px 0;
    text-align: center;
}

#uploadFileButton {
    display: none;
}
#uploadURLButton {
    display: none;
}
#webPageInput {
    margin: 20px 0;
    text-align: center;
}

.simple-cross,
.simple-cross:hover,
.simple-cross:active {
    background-color: transparent;
    border: none;
}

.webPageEnter {
    margin: 0px 0px 10px 0px;
    width: calc(100% - 250px) !important;
    min-width: 200px !important;

}

#webPageError {
    margin-left: 10px;
}

#urlsToCrawl {
    width: 80%;
    text-align: center;
}

#textToUpload {
    margin: 20px 0;
}

/* For showing uploaded files */
.file-container {
    display: flex;
    align-items: center;
}

.file-container p {
    font-size: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.file-info {
    display: flex;
    align-items: center;
    width: 100%;
}

.file-name {
    width: 95%;
    border-radius: 20px;
    margin-right: 10px;
    word-break: break-word;
}

.file-status {
    font-size: 15px;
    width: 150px;
    background-color: #f1f1f1;
    border-radius: 20px;
    margin-right: 10px;
    word-break: break-word;
    text-align: center;
}

.processing {
    background-color: rgb(219, 234, 254);
    color: rgb(55, 65, 81);
    border: 1px solid rgb(59, 130, 246);
}

.loaded {
    background-color: rgb(220, 252, 231);
    color: rgb(55, 65, 81);
    border: 1px solid rgb(34, 197, 94);
}

.file-date,
.file-size {
    margin-right: 10px;
}

.file-delete {
    color: #ff0000;
    text-decoration: none;
}

/* Training data  */

.goals-container {
    padding: 20px;
    background-color: #F9F9F9;
    border-radius: 20px;
  }

.goals-text {    
    font-weight: bold;
    width: fit-content;
    padding-bottom: 10px;
    border-radius: 10px;
    height: fit-content;
}

.goals-textarea {
    width: 100%;
    border: none;
    resize: none;
    overflow: hidden; /* Hide scrollbar */
}

.tips {
    background-color: #F9F9F9; 
    border-radius: 20px; 
    padding: 20px; 
    margin: 20px 0px;
}

/* styles for sorting table */
.table th {
    position: relative;
    padding-right: 25px; 
  }

.sortable {
    cursor: pointer;
    position: relative;
    padding-right: 20px;
  }
  .sortable:hover {
    background-color: #f9f9f9;
  }
  .sort-indicator {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
  }
  .sort-indicator.asc {
    border-bottom: 5px solid #666;
  }
  .sort-indicator.desc {
    border-top: 5px solid #666;
  }