/* Your existing CSS styles */
body {
    font-family: Arial, sans-serif;
}
.sentence {
    padding: 8px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}
.sentence-text {
    font-weight: bold;
}

.info-box {
    margin-top: 5px;
    font-size: 0.9em;
    color: #666;
}

.info-box div {
    margin-top: 2px;
}

.checked {
    background-color: lightgreen;
}
.checked:before {
    content: "✓";
    margin-right: 5px;
}
.group-selected {
    background-color: lightblue;
}
.group-info {
    margin-left: 10px;
    font-style: italic;
}

/* New CSS styles for custom modal dialog */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 5px;
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center elements horizontally */
}

.modal-input {
    width: 60%;
    padding: 12px 20px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.modal-button {
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 30%;
}

.modal-button:hover {
    background-color: #45a049;
}
.group-info-style {
    color: white;
    background-color: blue;
    padding: 2px 5px;
    border-radius: 3px;
}
.sentences-container {
    margin-top: 20px; /* Adjust the value as needed */
    max-height: 750px; /* Adjust the height as needed to fit approximately 5 sentences */
    max-width: 1000px;
    overflow-y: auto;
    border: 1px solid #ccc; /* Optional: Add a border for better visibility */
    padding: 10px; /* Optional: Add some padding */
    margin-bottom: 20px; /* Add space after the sentences container */
}

.recommended-info {
    margin-left: 10px;
    font-style: italic;
}

.recommended-info-style {
    color: white;
    background-color: rgb(19, 112, 47);
    padding: 2px 5px;
    border-radius: 3px;
}
