/* === BAM+ Announcements Manager Custom Style === */
.bam-announcement {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bam-announcement:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.bam-announcement .bam-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.bam-announcement .bam-text {
    font-size: 14px;
    line-height: 1.5;
}

.bam-announcement .bam-link {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s;
}

.bam-announcement .bam-link:hover {
    background-color: rgba(255, 255, 255, 0.4);
}
