.form-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.form-image-container img {
    width: 150px;
    height: auto;
    border-radius: 10px;
    border: 1.5px solid var(--primary-color);
    background-color: var(--primary-color-transparent);
    padding: 0.5rem;
}

.CreatePost {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-left: 1.5rem;
}

.CreatePost form {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.CreatePost h5 {
    margin: 0.5rem 0 0 0;
    color: var(--primary-color);
}

h1 {
    color: var(--primary-color);
}



.CreatePostInput {
    margin: 0.5rem 0;
    padding: 0.5rem;
    border-radius: 10px;
    width: 100%;
    background-color: var(--primary-color-transparent);
    border: none;
    color: white !important;

}

.CreatePostInput:focus {
    color: white;
}

.CreatePostInput::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.color-input {
    margin: 0.5rem 0;
    border-radius: 10px;
    width: 100%;
    background-color: var(--primary-color-transparent);
    border: none;
    color: white;
}

.CreatePostBtn {
    margin: 0.5rem 0;
    padding: 0.5rem;
    border-radius: 10px;
    background-color: var(--primary-color-transparent);
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.CreatePostBtn:hover {
    background-color: #858585;
    color: #f6f6f6;
}

.ChosenCreatePostBtn {
    margin: 0.5rem 0;
    padding: 0.5rem;
    border-radius: 10px;
    background-color: var(--dark-color);
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.ChosenCreatePostBtn:hover {
    background-color: var(--primary-color-transparent);
    color: white;
}

.CreatePostBtnDanger {
    margin: 0.5rem 0;
    padding: 0.5rem;
    border-radius: 10px;
    background-color: var(--red-color);
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.CreatePostBtnDanger:hover {
    background-color: var(--dark-red-color);
    color: #f6f6f6;
}



.form-check {
    margin: 2px;
}


.attributes-box {
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 0.5rem;
}

.variations-box {
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 0.5rem;
}



/* Checkbox Style */
/* Customize the label (the container) */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin: 12px;
    height: 20px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input~.checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked~.checkmark {
    background-color: var(--primary-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* End Checkbox Style */