/* Basic Styling */
body {
    font-family: 'Arial', sans-serif;
    direction: rtl;
    text-align: right;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

.sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #333;
    color: white;
    padding: 20px;
    box-sizing: border-box;
}

.sidebar h2 {
    text-align: center;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar ul li {
    margin: 15px 0;
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px;
}

.sidebar ul li a:hover {
    background-color: #575757;
}

.main-content {
    margin-right: 0;
    margin-left: 250px; /* Adjust to the sidebar width */
    padding: 20px;
}

header h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    flex: 1;
    text-align: center;
}

.stat-card h3 {
    font-size: 20px;
    color: #333;
}

.stat-card p {
    font-size: 24px;
    color: #007BFF;
}

.reservations table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.reservations table th,
.reservations table td {
    padding: 12px;
    border: 1px solid #ddd;
}

.reservations table th {
    background-color: #f4f4f4;
}

.reservations table td {
    text-align: center;
}

.reservations table tr:nth-child(even) {
    background-color: #f9f9f9;
}

button {
    padding: 8px 16px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}
