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

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

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

      table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    direction: rtl;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

th {
    background: #282728; /* بنفسجي مكتوب */
    color: #fff;
    cursor: pointer;
    position: relative;
}

th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #ff7b00; /* برتقالي مكتوب */
}

td {
    transition: all 0.2s;
}



a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s;
}


table td {
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    color: #000000 !important;
    background-color: #f1f1f1;
}