.create-button {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 50px;
    margin-right: 75px;
}

.create-button button {
    width: 152px;
    height: 44px;
    padding: 0 16px;
    align-items: center;
    justify-content: center;
    font-family: Arial, serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #FFFFFFFF;
    background: #636AE8FF;
    opacity: 1;
    border: none;
    border-radius: 6px;
    transition: 0.3s;
    cursor: pointer;
    gap: 6px;
}

.create-button button:hover {
    color: #FFFFFFFF;
    background: #4850E4FF;
}

.create-button button:hover:active {
    color: #FFFFFFFF;
    background: #2C35E0FF;
}

.create-button button:disabled {
    opacity: 0.4;
}

.table {
    position: relative;
    top: 15px;
    width: 100%;
    margin: 30px auto;
    display: flex;
    justify-content: center;
}

.items {
    width: 90%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.items th, .items td {
    padding: 18px 16px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    font-family: Arial, serif;
    font-size: 16px;
}

.items th {
    background: #f8f9fb;
    font-family: Arial, serif;
    font-weight: 500;
    color: #6c757d;
    letter-spacing: 1px;
}

.product-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 16px;
}

.product-name {
    font-family: Arial, serif;
    font-weight: 600;
    color: #222;
}

.icon {
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.pagination {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
}

.pagination a,
.pagination button {
    padding: 8px 14px;
    color: #555;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

.pagination a:hover:not(.disabled) {
    background-color: #e2e8f0;
    color: #333;
}

.pagination .disabled {
    color: #bbb;
    cursor: default;
    pointer-events: none;
    background-color: transparent;
}

.pagination span.current {
    font-weight: 600;
    color: #111;
}

.pagination a {
    min-width: 60px;
    text-align: center;
}
