.read-more-container {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

.read-more-toggle {
    width: fit-content;
    align-self: center;
    color: #0073e6;
    cursor: pointer;
    font-weight: 400 !important;
    text-decoration: none !important;
    padding: 7px 24px;
    border-radius: 3px;
    background-color: #f0f0f0; /* Default background color */
    border: 1px solid;
    border-color: #413f3d;
}

.read-more-toggle:hover {
    text-decoration: none;
    color: #0056b3; /* Default hover color */
    background-color: #e0e0e0; /* Default hover background */
}

.short-content {
    font-size: 16px;
    color: #333;
}

.long-content {
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #333;
    display: none; /* Initially hidden */
}