.cs-art {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .cs-art-item {
            margin-bottom: 5px;
            border-bottom: 1px solid #ccc;
            padding-bottom: 5px;
        }

        .cs-art-title {
            cursor: pointer;
            margin-bottom: 10px;
            margin-left: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
         .cs-art-item h3 {
  margin-top: 1rem !important;
  margin-bottom: .50rem !important;
}
        .cs-art-item h3 {
            font-size: 1.6rem;
            color: #007bff;
            cursor: pointer;
            margin-right: 15px;
        }
        
        .cs-art-article {
            display: none;
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 15px;
            border-bottom: 1px solid #007bff;
            border-top: 1px solid #007bff;
            padding: 10px;
        }

        .cs-art-title:hover {
            text-decoration: underline;
        }
        
        .cs-art-toggle {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        
        .cs-art-item.active .cs-art-toggle {
            transform: rotate(0deg);
        }

body.reading-mode .cs-art {
    background-color: #1a1a1a !important;
}