
.products-page {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 100px;
}

.wrapper {
    display: flex;
    align-items: center;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* jedna položka */
.product-item {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

/* obrázek */
.product-item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* text */
.product-info {
    padding: 15px;
}

.product-info h2 {
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    .product-item {
        flex-direction: row;
    }

    .product-item img {
        width: 700px;
        height: auto;
    }
}

img,
.product-item,
.product-card,
.dropdown-content {
    border-radius: 10px;
}

.product-item {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
h1 {
    font-size: 50px;
    text-align: center;
}

.seznam-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.seznam {
    width: 270px;
    text-align: center;
}

.actions a {
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.edit {
    background: #ffc107;
    color: black;
    margin-left: 10px;
}

.delete {
    background: #dc3545;
    color: white;
    margin-left: 10px;
}

.btn-primary
{
    display: flex;
    justify-content: center;

    padding:12px;

    background:#3f7df6;
    color:white;

    border:none;
    border-radius:8px;
    font-size: 17px;
    cursor:pointer;
}

.pozice {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}