#quran-content {
    max-width: 800px;
    margin: 5px auto;
	padding: 20px 20px 20px 20px !important;
    font-family: Arial, sans-serif;
}

#surah-content {
    max-width: 800px;
    margin: auto;
}

.ayat {
    border-bottom: 1px dashed #444;
    padding: 10px 0;
}

/**
.nomor {
    font-size: 18px;
    color: #000000;
}
**/

.nomor {
	background: #ff3b3b;
    color: #fff;
    font-weight: 600;
    width: 35px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.arab {
	font-family: lpmq, sans-serif;
    font-size: 30px;
	color: #000000;
    direction: rtl;
    text-align: right;
	line-height: 2;
}

.arab-hadits {
	font-family: lpmq, sans-serif;
    font-size: 20px;
	color: #460E99;
    direction: rtl;
    text-align: right;
	line-height: 2;
}

.latin {
	font-family: system-ui, sans-serif;
    font-size: 17px;
    /**color: #C22B0E;**/
	color:#BD2D11;
}

.arti {
	font-family: system-ui, sans-serif;
    font-size: 18px;
    color: #71797E;
}

.div_1 {
    display: flex;
    align-items: center;
    gap: 10px; /* JARAK antar elemen */
}

.title {
	font-family: system-ui, sans-serif;
    font-size: 24px;
    color: #B0230B;
}

h1 {
	margin: 20px 0px 0px 20px !important;
}

h3 {
	margin: 20px 0px 0px 20px !important;
	padding-bottom: 0px;
	padding-top: 0px;
}

body {
    font-family: system-ui, sans-serif;
    background: #fafafa;
    margin: 0;
    padding: 0;
}

.quran-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 10px;
}

.quran-wrapper h1 {
    margin-bottom: 20px;
    font-size: 28px;
}

.surah-list {
    list-style: none;
    counter-reset: surah;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0;
    margin: 0;
}

.surah-list li {
    counter-increment: surah;
    background: #fff;
    border-radius: 6px;
    padding: 5px 7px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
	line-height: 1;
}

.surah-list li::before {
    content: counter(surah);
    background: #ff3b3b;
    color: #fff;
    font-weight: 600;
    width: 35px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

/**
.surah-list a {
    text-decoration: none;
    color: #0056cc;
    font-size: 14px;
}

.surah-list a:hover {
    text-decoration: none;
}
**/

.surah-name-hover {
    color: #000000;           /* Hitam */
    text-decoration: none;    /* Hilangkan garis bawah */
    font-weight: 500;
    transition: color 0.3s ease; /* Animasi halus */
}

.surah-name-hover:hover {
    color: #888888;           /* Abu-abu saat hover */
}

/* Tablet */
@media (max-width: 992px) {
    .surah-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .surah-list {
        grid-template-columns: 1fr;
    }
}
