/* styles.css */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
}

.mainbody {
    width: 100%;
    justify-content: center;
    text-align: center;
}
/* Additional styles for Inbox page */
/* Additional styles for Inbox page */

.container {
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.message-box {
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
}

.message-box p {
    margin: 0;
}

.message-box a {
    margin-right: 10px;
    color: #007bff;
    text-decoration: none;
}

.message-box a:hover {
    text-decoration: underline;
}

.message-box hr {
    margin: 10px 0;
    border: 0;
    border-top: 1px solid #ccc;
}

.message-box p:last-child {
    text-align: right;
}

/* Styles to display conversations below each other */
.conversation-container {
    margin-bottom: 20px;
	margin-right:20px;
	clear:both;
}

h1.cart {
    text-align: right;
    padding-right: 150px;
}

li.text {
    text-align: right;
    padding-right: 100px;
}

p.text {
    text-align: right;
    padding-right: 100px;
}

header {
    background-color: #333;
    color: #fff;
}

p {
    padding-left: 50px;
}

header .logo {
    display: flex;
    align-items: left;
    background: linear-gradient(to right, #333, #333 50%, #eee 100%, #333 100%);
}

header .logo img {
    height: 200px;
    /* Set the height of the logo image */
    background-color: #333;
}

header .navigation {
    display: flex;
    justify-content: center;
    /* Center the navigation bar horizontally */
    background-color: #333;
    padding: 0px;
    height: 30px;
}

header .menu-container {
    display: flex;
    align-items: center;
}

header .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header .menu li {
    margin-right: 20px;
}

header .menu li:last-child {
    margin-right: 0;
}

header .menu a {
    color: #fff;
    text-decoration: none;
}

header .menu a:hover {
    background-color: #8fd3fe;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

form label span {
    min-width: 100px;
    /* Set a minimum width for the labels to align them */
}

input,
textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

/* Add some left margin for the buttons in the navigation */
header .menu .webshop-button {
    margin-left: 20px;
}

menu {
    color: #fff;
    text-decoration: none;
}

/* Webshop Page */
main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.article-box {
    width: 180px;
    /* Adjust the width of the product boxes */
    margin: 10px;
    /* Adjust the margin for the product boxes */
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.article-box img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.article-box h2 {
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
}

.article-box p {
    margin-top: 5px;
}

.article-box span {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.article-box button {
    margin-top: 10px;
}

/* Pagination Buttons */
.next-page-button {
    display: flex;
    justify-content: center;
}

.next-page-button a {
    padding: 8px 15px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin: 0 5px;
}

.next-page-button a:hover {
    background-color: #555;
}

#container {
    height: 100vh;
}

#outer-menu {
    background-color: #333;
    width: 270px;
    height: 100vh;
    float: left;
}

#menu-container {
    margin-top: 30px;
    margin-left: 70px;
    float: left;
    width: 200px;
    background-color: #333;
}

#menu-container a {
    color: #fff;
    text-decoration: none;
}

#menu-container a:hover {
    background-color: #8fd3fe;
}

#dashboard-container {
    margin-right: 70px;
}

/* CSS Grid layout */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Three columns in a row */
    gap: 20px;
    /* Gap between items */
}

.order-item {
    border: 1px solid #ccc;
    padding: 10px;
}
