/* المشايخ */
body {
    font-family: 'Cairo', Arial, sans-serif;
    background: linear-gradient(120deg, #148b4e 0%, #eafaf1 100%);
    margin: 0;
    padding: 0;
}
.container {
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 30px;
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 25px;
}
.reciter-name {
    font-size: 1.5em;
    color: #192a56;
    font-weight: bold;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
th, td {
    padding: 10px 8px;
    text-align: center;
}
th {
    background: #eafaf1;
    color: #148b4e;
}
tr:nth-child(even) {
    background: #f7f7f7;
}
.download-btn {
    background: #0097e6;
    color: #fff;
    border: none;
    padding: 7px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: bold;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}
.download-btn:hover {
    background: #44bd32;
}
.listen-btn {
    background: #44bd32;
    color: #fff;
    border: none;
    padding: 7px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: bold;
    margin-right: 2px;
    transition: background 0.3s;
}
.listen-btn:hover {
    background: #0097e6;
}

