/* styles.css */

/* Input that adapts width to its content */
body { 
    font-family: Arial, sans-serif; 
    background-color: #f2f2f2; 
    padding: 20px;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}
textarea { 
    width: 100%; 
    height: 450px; 
    font-family: monospace; 
}
input[type="text"] { 
    width: 100%; 
    padding: 10px; 
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
input[type="submit"] { 
    padding: 10px 20px; 
    margin-top: 10px; 
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: #45a049;
}
hr {
    border: none;
    height: 2px;
    background-color: #ccc;
    margin: 40px 0;
}       
.example {
    margin: 5px 0;
}
.results {
    background-color: white;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    margin-top: 20px;
}
.security-header {
    background-color: #f8f8f8;
    padding: 10px;
    border-left: 4px solid #4CAF50;
    margin-bottom: 15px;
}
.disclaimer { 
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: monospace;
    font-size: xx-small; 
}
.list-table .row {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding: 6px 0;
}
.cell {
    padding: 0 8px;
}
.counter {
    width: fit-content;
    text-align: right;
    color: #888;
}
.label {
    width: fit-content;
    font-weight: bold;
}
.value {
    flex: 1;
    word-break: break-word;
}
.subcontent{
	margin-left: 2em;
}
.subsubcontent{
	margin-left: 4em;
}
.options-container {
    display: none;
    margin-top: 10px;
}
.toggle-link {
    cursor: pointer;
    color: blue;
    text-decoration: underline;
}
.nonlatin {
background-color: #ffcccc; 
color: #cc0000;
}