body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

form {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

input, textarea, button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    background-color: #5cb85c;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background-color: #4cae4c;
}

h2 {
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
}

ul li {
    margin-bottom: 10px;
}

ul li a {
    text-decoration: none;
    color: #007bff;
}
/* Add this to style.css */
.message-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.message-container h1 {
    margin-bottom: 20px;
}

.message-container p {
    margin-bottom: 20px;
    font-size: 1.2em;
}

.message-container a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.message-container a:hover {
    text-decoration: underline;
}
/* Add this to style.css */
.edit-product-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.edit-product-container h1 {
    margin-bottom: 20px;
}

.edit-product-container .form-group {
    margin-bottom: 15px;
}

.edit-product-container .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.edit-product-container .form-group input,
.edit-product-container .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.edit-product-container .form-group textarea {
    height: 150px;
}

.edit-product-container button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.edit-product-container button:hover {
    background-color: #218838;
}

.edit-product-container .alert {
    color: red;
    font-weight: bold;
    margin-bottom: 15px;
}

.edit-product-container img {
    max-width: 100px;
    border-radius: 5px;
    margin-top: 10px;
}

.edit-product-container a {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.edit-product-container a:hover {
    text-decoration: underline;
}

