.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;
    transform: rotate(180deg);
  }

/* Eye icon and file actions styles */
.file-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.eye-icon {
    background-color: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s;
}



/* Crawled content modal styles */
.crawled-content-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.crawled-content-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 95%;
    min-width: 200px;
    height: 80vh;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.crawled-content-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1001;
}

.crawled-content-close-btn:hover {
    color: #333;
}

.content-info {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #007bff;
}

.content-info p {
    margin: 8px 0;
    font-size: 14px;
}

.content-info strong {
    color: #333;
    min-width: 80px;
    display: inline-block;
}

.content-text h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
}

#contentText {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
}