@charset "utf-8";
/* CSS Document */

h1, h2 {
    color: #333;
}

form {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

form div {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input, select, p {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

.cart {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.cart p {
    margin: 10px 0;
}

.designs {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.design {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.designs img {
	width: 100%;
	height: auto;
	border: 1px solid #ddd;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 10px;
}

.designs p {
	font-weight: bold;
	text-align: center;
	margin-top: 0;
}

.design-row {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
}

.design-text {
	text-align: center;
	font-weight: bold;
}