/* Styling Umum */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Hover Effect pada Berita */
.card {
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}

/* WhatsApp Floating Icon */
.float-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.float-wa:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
}

.my-float {
    margin-top: 16px;
}