.mak-title-prayer {
    background: #2c2c2c;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.mak-title-prayer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, #6b009d, #ff7b00); /* بنفسجي - برتقالي */
}

.mak-title-prayer i {
    font-size: 24px;
    color: #ff7b00; /* أيقونة برتقالية */
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

    body {
        direction: rtl;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    th {
        background-color: #000000;
        color: #fff;
        text-align: center;
        padding: 10px;
    }

    td {
        padding: 10px;
        text-align: center;
        border-bottom: 1px solid #ddd;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    tr:hover {
        background-color: #f0f0f0;
    }