body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #444;
}

input, button {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

a {
    color: chocolate;
    font-size: 18px;
    text-decoration: none;
    word-break: break-all;
}

button {
    background-color: #007bff;
    color: white;
    cursor: pointer;
    border: none;
    width: 100px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}


ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    padding: 10px;
    margin: 5px 0;
    background: #f9f9f9;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

ul li:hover {
    background-color: #e9e9e9;
}

button.delete, button.edit {
    width: 60px;
    margin: 0 5px;
    padding: 5px;
    font-size: 14px;
}

button.delete {
    background-color: #dc3545;
}

button.delete:hover {
    background-color: #c82333;
}

button.edit {
    background-color: #ffc107;
    color: #333;
}

button.edit:hover {
    background-color: #e0a800;
}


.product-list {
    margin-top: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0;
}

.product-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: block;
    background: #fff;
}

.product-item:last-child {
    border-bottom: none;
}

.name {
    color: #28a745;
    margin-top: 0;
    font-size: 20px;
}

.price {
    font-weight: bold;
    color: #333;
}

.description {
    font-size: 14px;
    color: #666;
}