* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f5f5f5;
    direction: rtl;
    font-family: 'Arial', sans-serif;
}

.navbar {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0f7898;
    color: white;
    height: 75px;
}

.navbar-title {
    font-size: 27px;
    font-weight: bold;
}

.home-btn {
    background-color: #fff;
    color: #0f7898;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
}

a {
    text-decoration: none;
    color: white;
}

.button-event {
    text-align: center;
    margin: 30px auto;
    padding: 0 20px;
}

.button-event h2 {
    margin-bottom: 20px;
    color: #333;
}

.eve {
    border: none;
    background-color: #0f7898;
    color: #f5f5f5;
    padding: 10px 20px;
    margin: 5px 5px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s;
}

.eve:hover {
    background-color: #419ab5;
    transform: scale(1.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.update-notice {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0;
    color: #333;
}

.center-events {
    display: flex;
    justify-content: center;
}

.month-table {
    display: none;
    width: 100%;
    margin: 20px 0;
}

table {
    border-collapse: collapse;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

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

th {
    background-color: #0f7898;
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

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

/* إضافة هذه الأنماط إلى ملف CSS */

.center-events {
    position: relative;
    overflow: hidden;
}

.center-events::before {
    content: "كورس الفاتحون";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.05); /* لون شبه شفاف */
    z-index: -1;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

table {
    position: relative;
    background-color: rgba(255, 255, 255, 0.9); /* خلفية الجدول شبه شفافة */
}