/* Umumiy sozlamalar */
body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Sarlavhalar */
h1, h2, h3 {
    color: #333;
}

/* Foydalanuvchi menu */
#menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
}

.card {
    background: white;
    width: 230px;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card h3 {
    margin: 5px 0;
}

.card p {
    margin: 2px 0;
}

/* Admin panel */
form input, form select, form button {
    padding: 8px;
    margin: 5px 0;
    width: 200px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    width: 120px;
    background: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background: #218838;
}

/* Jadval dizayni */
table {
    border-collapse: collapse;
    margin: 20px auto;
    width: 90%;
}

table, th, td {
    border: 1px solid #ccc;
}

th, td {
    padding: 10px;
    text-align: center;
}

th {
    background-color: #007bff;
    color: white;
}

/* Rasm preview */
#preview {
    margin-top: 10px;
    border-radius: 5px;
}

/* Responsive (telefon) */
@media (max-width: 600px) {
    #menu {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 90%;
    }
    form input, form select, form button {
        width: 90%;
    }
    table {
        width: 100%;
    }
}
