body {
    padding: 20px;
}

.btn-group {
    margin-bottom: 10px;
}

pre {
    font-family: Consolas, "Courier New", monospace; /* Use a monospace font */
    color: #333; /* Darker text color */
    overflow: auto; /* Add scrollbar if necessary */
    white-space: pre-wrap; /* Allow wrapping of long lines */
    word-wrap: break-word; /* Break long words if necessary */
    background-color: #f8f9fa; /* Light background for readability */
    padding: 10px; /* Add some padding */
    border-radius: 5px; /* Rounded corners */
    border: 1px solid #dee2e6; /* Border for separation */
}

.details {
    display: none; /* Hidden by default */
    padding: 10px;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.toggle-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
}

.toggle-btn:hover {
    background-color: #0056b3;
}