/* Basic styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.rtl {
    direction: rtl;
    text-align: right;
}

/* Product cards */
.product-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-img {
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Cart table */
.cart-table {
    width: 100%;
    margin-bottom: 20px;
}

.cart-table th {
    text-align: left;
    padding: 10px;
    background: #f5f5f5;
}

.cart-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

/* Form styles */
.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

/* Admin styles */
.admin-nav {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.admin-nav ul {
    list-style: none;
    padding: 0;
}

.admin-nav li {
    margin-bottom: 10px;
}

.admin-nav a {
    text-decoration: none;
    color: #333;
}

.admin-nav a:hover {
    color: #007bff;
}

