

.compact-notification {
            background: white;
            padding: 25px;
            margin: 20px auto;
            max-width: 70%;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border-left: 5px solid #667eea;
            position: relative;
            top:25px;
        }

        .compact-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .compact-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .compact-icon {
            font-size: 1.8rem;
        }

        .compact-badge {
            background: #ff4757;
            color: white;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .compact-content {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .compact-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .compact-date {
            color: #6c757d;
            font-size: 0.9rem;
        }

        .see-more-btn {
            background: #667eea;
            color: white;
            padding: 8px 20px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-size: 0.9rem;
        }

        .see-more-btn:hover {
            background: #5a6fd8;
            transform: translateY(-2px);
        }

        .urgent {
            border-left-color: #ff4757;
        }

        .info {
            border-left-color: #3498db;
        }