@charset "utf-8";
/* CSS Document */
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 10px;
    background-color: #f0f0f0;
}
.header {
    position: fixed;
    width: 100%;
    background-color: #FFFFFF;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}
.header {
    top: 0;
    height: 50px;
    justify-content: space-between;
    padding: 0 20px;
}
.header .left-logo {
    width: 40px;
    height: 40px;
}
.header .right-logo {
    width: 215px;
    height: 36px;
    margin-right: 30px;
}
.back-button {
    position: absolute;
    top: 60px;
    left: 20px;
    width: 40px;
    height: 40px;
}
.content {
    margin-top: 60px;
    margin-bottom: 80px;
    padding: 10px;
    font-size: 24px;
    text-align: center;
}
.notification {
    position: absolute;
    top: 0;
    right: 0;
    background-color: red;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.product-container {
    text-align: center;
    width: 100%;
    max-width: 350px;
    position: relative;
}
.product-image {
    width: 100%;
    height: 216px;
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
    position: relative;
}
.edit-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.edit-icon img {
    width: 20px;
    height: 20px;
}
.additional-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}
.additional-image {
    width: 70px;
    height: 40px;
    background-size: cover;
    background-position: center;
    margin: 5px;
    position: relative;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.additional-image input {
    display: none;
}
.additional-image-name {
    font-size: 1px;
    word-break: break-all;
    margin-top: 5px;
}
.price, .total-price {
    margin: 10px 0;
    font-size: 24px;
}
.form-container {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 8px;
}
.form-container label {
    font-size: 12px;
    align-self: flex-start;
    margin-top: 10px;
}
.form-container input, .form-container textarea, .form-container select {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 16px;
}
.form-container input:focus, .form-container textarea:focus, .form-container select:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}
.post-button {
    margin-top: 10px;
    background-color: #ccc;
    color: white;
    border: none;
    padding: 10px;
    cursor: not-allowed;
    font-size: 18px;
    width: 100%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.state-button {
    margin-top: 10px;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    text-align: center;
    border-radius: 4px;
    border: none;
    color: white;
}
.state-button.ACT {
    background-color: green;
}
.state-button.DES {
    background-color: red;
}
.content {
    flex: 1;
}
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: #fff;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}
footer img {
    width: 160px;
    height: 27px;
}
