    .card {
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        background-color: #fff;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .card img {
        height: 150px;
        object-fit: cover;
        width: 100%;
    }

    .card-body {
        padding: 15px;
    }

    .card-title {
        font-size: 16px;
        font-weight: 600;
        color: #333;
    }

    .card-text {
        font-size: 14px;
        color: #555;
        word-break: break-word;
    }

    .read-more {
        display: inline-block;
        color: #007bff;
        font-weight: 500;
        text-decoration: none;
    }

    .read-more:hover {
        text-decoration: underline;
    }

    .show-more {
        display: inline-block;
        margin-left: 0.5rem;
        cursor: pointer;
        user-select: none;
    }

    .custom-alert-box {
        background: linear-gradient(90deg, #00B16C, #0C7CBB);
        border: none;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 500;
        /* max-width: 700px; */
    }