/* style.css */
.livedraw-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolom */
    gap: 1rem;
    padding: 20px;
}

/* Responsif: 1 kolom pada layar kecil */
@media (max-width: 768px) {
    .livedraw-container {
        grid-template-columns: 2fr; /* 1 kolom */
    }
}

/* Card untuk tombol */
.card {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    background-color: #f1f1f1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Tombol mini dalam card */
button {
    font-size: 14px;
    color: white;
    background-color: #3498db;
    padding: 8px 16px;
    border: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    width: auto;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
}

button:hover {
    background-color: #2980b9;
}

button:active {
    transform: translateY(2px);
}

/* Icon di samping tombol */
button img {
    margin-left: 8px;
    vertical-align: middle;
}

/* Background konten dengan warna yang cerah dan tidak bentrok */
body {
    background-color: #ecf0f1; /* Light grey background */
}

/* Card untuk artikel SEO */
.article-seo {
    background-color: #ffffff; /* White background for the article */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px; /* Add spacing at the bottom */
}

/* Heading dalam artikel SEO */
.article-seo h1 {
    color: #2980b9;
    font-size: 24px;
    margin-bottom: 15px;
}

/* Paragraf dalam artikel SEO */
.article-seo p {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Artikel SEO dengan latar belakang berbeda untuk lebih menonjol */
.article-seo {
    background-color: #f9fafb; /* Light background color */
    border-left: 5px solid #3498db; /* Accent left border */
}

/* Artikel SEO: Fokus pada link dan teks yang lebih besar */
.article-seo a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.article-seo a:hover {
    text-decoration: underline;
}
