<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.abstract {
    padding: 12px 16px; /* Smaller padding */
    margin: 20px 0 10px; /* Smaller margin */
    border-radius: 8px;
    background-color: #f9f9f9;
    background-image: linear-gradient(to right top, #f9f9f9, #ffffff);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    transition: all 0.3s ease;
    text-align: justify; /* Justify text */
}

.abstract:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.abstract_text {
    font-size: 16px; /* Smaller text size for smaller box */
    line-height: 24px; /* Adjusted line height */
    color: #333;
}

.abstract_title {
    font-size: 18px; /* Smaller title for smaller box */
    font-weight: bold;
    margin-bottom: 8px; /* Smaller bottom margin */
    color: #007bff;
}
</pre></body></html>