.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);
    background-color: var(--primary-opacity);
    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);
}

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

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

.CreatePostInput-transparent:focus {
    color: var(--dark-color);
}

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

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

.form-label {
    color: var(--primary);
}

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

.CreatePostBtn {
    margin: 0.5rem 0;
    padding: 0.5rem;
    border-radius: 10px;
    background-color: var(--primary);
    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-opacity);
    color: var(--dark-color);
}

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

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

.UpBtn {
    font-size: 1em;
    border: none;
    background-color: var(--primary-opacity);
    color: white;
    padding: 0.7rem 1rem;
    border-radius: 2rem 2rem 0 0;
    margin-bottom: 0.2rem;
    transition: 0.3s;
}

.DownBtn {
    font-size: 1em;
    border: none;
    background-color: var(--primary-opacity);
    color: white;
    padding: 0.7rem 1rem;
    border-radius: 0 0 2rem 2rem;
    transition: 0.3s;
}

.UpBtn:hover,
.DownBtn:hover {
    background-color: var(--primary);
    color: var(--dark-color);
}

.form-check {
    margin: 2px;
}


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

.variations-box {
    border: 1px solid var(--primary);
    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;
}

/* 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);
}

/* 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 */
