.announcement-title {
            font-size: 20px;
            font-weight: normal;
            color: #333;
            line-height: 1.4;
            width: 100%;
            word-wrap: break-word;
        }
.timestamp{
     font-size:18px;
}

        .author-name {
            font-size: 16px;
            font-weight: bold;
            color: #007bff;
            margin-bottom: 5px;
            display: inline-block;
        }

        .description-toggle {
            cursor: pointer;
            color: #007bff;
            font-weight: 500;
        }

        .attachment-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 10px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .attachment-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

        .attachment-card .card-body {
            display: flex;
            justify-content: space-between;
            padding: 1rem;
        }

        .attachment-title {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            word-wrap: break-word;
            line-height: 1.4;
        }

        .attachment-size {
            font-size: 12px;
            color: #adb5bd;
        }

        .attachment-type {
            font-size: 14px;
            color: #6c757d;
        }

        .download-btn {
            background-color: #007bff;
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            font-size: 14px;
            text-transform: uppercase;
            transition: background-color 0.3s ease;
        }

        .download-btn:hover {
            background-color: #0056b3;
        }

        
        @media (max-width: 576px) {
            .announcement-title {
                font-size: 13px;
            }
           .timestamp{
                font-size:10px;
           }

            .attachment-title {
                font-size: 14px;
            }

            .attachment-card .card-body {
                flex-direction: column;
                padding: 0.8rem;
            }

            .attachment-card .btn {
                width: 100%;
                margin-top: 10px; 
            }

            .description-toggle {
                font-size: 14px; 
            }

            .badge {
                font-size: 0.8rem;
            }

            .list-group-item {
                padding: 0.8rem;
            }
        }


        @media (min-width: 577px) and (max-width: 768px) {
            .attachment-card .card-body {
                flex-direction: row;
            }

            .attachment-card .btn {
                margin-left: 10px; 
            }
        }

        
        .author-email {
            float: right;
            font-size: 14px;
            color: #007bff;
        }

      
        .upcoming-badge,
        .exam-badge,
        .important-badge,
        .published-badge {
            font-size: 0.9rem;
            font-weight: bold;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            margin-left: 10px;
            float: right;
        }

        .upcoming-badge {
            background-color: #007bff;
            color: white;
        }

        .exam-badge {
            background-color: #f39c12;
            color: white;
        }

        .important-badge {
            background-color: #e74c3c;
            color: white;
        }

        .published-badge {
            background-color: #2ecc71;
            color: white;
        }

        
        .author-container {
            display: inline-block;
            width: 100%;
        }

        .clearfix::after {
            content: "";
            clear: both;
            display: table;
        }
.list-group-item:hover{
	z-index:unset;
}