body {
    margin: 0;
    font-family: Tahoma, Arial, sans-serif;
    background: #fff;
}

/* الهيدر */
header {
    background: #333;
    padding: 15px 30px;
    display: flex;
    direction: ltr;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 22px;
    color: #00ffea;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    transition: 0.3s;
}

nav a:hover {
    color: #00ffea;
}
/* Circular Button */
.toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #5f5f5f;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -300px; /* Completely hidden */
    width: 260px;
    height: 100%;
    background-color: #333;
    color: white;
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 999;
}

.sidebar.active {
    right: 0;
}

.sidebar a {
    display: block;
    color: white;
    direction: ltr;
    text-decoration: none;
    padding: 15px 20px;
    border-bottom: 1px solid #444;
    border-left: 1px solid #444;
}
.sidebar a:hover {
    transform: scale(1.05); /* تكبير الصورة عند المرور */
    border-color: #666;
}
.slidebar h2 {
    color: #00ffcc;
}
.pragh {
    color: #00ffea;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}
.content {
    text-align: center;
}

.signup-container {
    background: #333;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    width: 300px;
    text-align: center;
    margin: auto;
}

.signup-container h2 {
    margin-bottom: 20px;
    color: #00ffea;
}

.signup-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.signup-container button {
    background-color: #00ffea;
    color: #000;
    padding: 10px;
    border: none;
    width: 107%;
    border-radius: 5px;
    cursor: pointer;
}

.signup-container button:hover {
    background-color: #eee;
}

.signup-container a {
    display: block;
    margin-top: 15px;
    color: #007BFF;
    text-decoration: none;
}

.signup-container a:hover {
    text-decoration: underline;
}

.footer {
    display: flex;
    justify-content: space-around;
    background-color: #333;
    color: #fff;
    direction: ltr;
    padding: 20px;
    margin-top: 20px;
}
.footer a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
}
.footer a:hover {
    color: #00ffea;
}
.footer p {
    margin: 5px 0;
}
.copyright {
    text-align: center;
    background-color: #222;
    color: #fff;
    padding: 10px;
}