/* search_documents.css */

.text-preview {
    padding: 10px;
    margin-bottom: 20px;
    overflow-y: scroll; /* Makes scrollable */
    overflow-y: auto; 
    white-space: pre-wrap;
    height: 400px;
    resize: vertical; /* Allow only vertical resizing */
}
/*  Make text box wrap text */
.text-preview pre {
    white-space: pre-wrap; /* Wrap text */
    word-break: break-word; /* Breaks long words */
    margin: 0; /* Reset default margin of <pre> */
}
.links-preview {
    background-color: #EAE6DE; /* Matches the background from paste.css */
    border: 1px solid var(--border-color);
    border-radius: 30px; /* Matches the border-radius from paste.css */
    width: 95%;
    padding: 10px;
    margin-bottom: 20px;
    height: 220px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 10px;
    overflow-y: auto; 
    resize: vertical; /* Allow only vertical resizing */
}

.disabled-button {
    background-color: gray;
    color: white;
}

#csv_download_link a {
    font-family: Arial, sans-serif;
    font-family: "Roboto Mono", mono, sans;
    font-size: 16px; 
    font-weight: 600;
    color: #000;
    text-decoration: none;
    letter-spacing: 1px;
    background-color: #A9BC58;
    padding: 10px;
    border: 1px solid #97A84E;
    border-radius: 6px;
    cursor: pointer;
}

#csv_download_container {
    margin-top: 5px; /* Moves the entire download button container down */
}

#csv_download_link a:hover {
    background-color: #97A84E;
    box-shadow: var(--box-shadow-hover);
}
  
