body {
    background-color: #fff2e8;
    font-family: 'Trebuchet MS';
}

header {
    display: flex;
    align-items: center;
    background-color:#fff2e8;
    box-shadow: 0px 1px 10px #aaa;
    height: 70px;
    padding-left: 15px;
    padding-right: 15px;
}

.logo {
    display: block;
    height:50px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: auto;
}

#loginbtn {
    color: #fff2e8;
    background-color: #114011;
    width: 150px;
    padding-right: 10px;
}

#loginbtn:hover {
    background-color: #0e300e;
}

.form-control:focus {
  box-shadow: none !important;
  outline: none !important;
}

#actionbtn, #actionbtn_logout {
    display: flex;
    color: #fff2e8;
    background-color: #114011;
    justify-content: center;
    align-items: center;
}

#actionbtn:hover, #actionbtn_logout:hover {
    background-color: #0e300e;
}

#login_email, #login_password {
    text-align: center;
    background-color:#fff2e8;
    border-color: transparent;
    border-bottom-color: #114011;
}

#login_email, #login_password {
    text-align: center;
    background-color:#fff2e8;
    border-color: transparent;
    border-bottom-color: #114011;
}

#signup, #login {
    text-align: center;
}

#signup_email, #signup_password, #signup_name, #signup_lastname, #signup_password_confirm {
    text-align: center;
    background-color:#fff2e8;
    border-color: transparent;
    border-bottom-color: #114011;
}

#signup_name {
    margin-right: 5px;
}

#signup_lastname {
    margin-left: 5px;
}

#navbtn {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    border-bottom: 0 solid #114011;
}

#navbtn svg {
    color: #114011;
    width: 50px;
    height: 50px;
}

#navbtn #svg_back {
    color: #114011;
    width: 40px;
    height: 50px;
}

#navbtn::after { 
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #114011;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    will-change: transform;
}

#navbtn:hover::after {
    transform: scaleX(1);
}

#heading {
    text-align: center;
    color: #114011;
    font-size: 40px;
}

#heading_2 {
    text-align: center;
    color: #114011;
    font-size: 30px;
}

#text {
    text-align: center;
    color: #114011;
    font-size: 16px;
}

#text_2 {
    text-align: left;
    color: #114011;
    font-size: 16px;
}

#roleToggle {
    display: none;
}

.toggle {
  display: flex;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-color: #fff2e8;
  transition: background-color 0.3s ease;
  border: #114011 1px solid;
  border-radius: 5px;
}

.toggle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #114011;
  transition: transform 0.3s ease;
}

#roleToggle:checked + .toggle::before {
  transform: translateX(100%);
}

.toggle .btn {
  flex: 1;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  user-select: none;
}

.toggle .designer {
  color: #114011;
}
.toggle .entrepreneur {
  color: #fff2e8;
}

#roleToggle:checked + .toggle .designer {
  color: #fff2e8;
}
#roleToggle:checked + .toggle .entrepreneur {
  color: #114011;
}

.category_grid, .post_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1260px;
  margin: auto;
}

.category_container{
    width: 400px;
    height: 220px;
    color: #fff2e8;
    display: flex;
    flex-direction: column;
    font-size: 24px;
    box-shadow: 0px 1px 10px #aaa;
    transition: transform 0.3s ease;
}

.category_container:hover {
    transform: scale(1.05);
}

.category_img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.category_name {
    height: 50px;
    font-size: 24px;
    color: #114011;
    background-color: #fff2e8;
    border: none;
}

.post_image   {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.post_container {
    width: 400px;
    height: 300px;
    color: #fff2e8;
    display: flex;
    flex-direction: column;
    font-size: 24px;
    box-shadow: 0px 1px 10px #aaa;
    transition: transform 0.3s ease;
}

.post_container:hover {
    transform: scale(1.05);
}

.post_name {
    height: 80px;
    font-size: 24px;
    color: #114011;
    background-color: #fff2e8;
    border: none;
}

#post_author {
    font-size: 16px;
    color: #114011;
    background-color: #fff2e8;
    border: none;
    margin-top: 5px;
}

#about {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

#profile_description, #post_description {
    background-color:#fff2e8;
    border: 1px solid #114011;
    height: 200px;
    white-space: pre-wrap;
    overflow-wrap: break-word;
}

#profile_picture {
    display: none;
}

#label {
    display: block;
    margin-bottom: 5px;
    font-size: 20px;
    color: #114011;
    text-align: left;
}

#social_media_label, #email_label {
    display: block;
    margin-bottom: 5px;
    font-size: 20px;
    color: #114011;
    text-align: center;
}

#profile_preview_container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    border: 1px solid #114011;
    border-radius: 0.25rem;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease;
}

#profile_preview_container:hover {
    transform: scale(1.05);
}

#profile_preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#notes {
    color: #601b1b;
}

#social_website, #social_twitter,#social_instagram, #social_linkedin, #social_facebook, #social_tiktok {
    text-align: center;
    background-color:#fff2e8;
    border-color: transparent;
    border-bottom-color: #114011;
}

#add_post {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#image_container {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #114011;
    border-radius: 0.25rem;
}

#post_page_image {
    width: 100%;
    height: auto;
    display: block;
}

#post_profile_picture_container {
    width: 200px;
    height: 200px;
    border: 1px solid #114011;
    border-radius: 0.25rem;
    overflow: hidden;
}

#post_profile_picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#post_profile_description {
  display: flex;
  align-items: center;
}

#social_media {
    display: flex;
    margin-top: 20px;
    gap: 30px;
    justify-content: center;
}

#social_media_link {
    cursor: pointer;
}

#category_id, #create_post_name {
    color: #114011;
    background-color: #fff2e8;
    border: 1px solid #114011;
}

#upload_image_1, #upload_image_2, #upload_image_3 {
    color: #114011;
    background-color: #fff2e8;
    border: 1px solid #114011;
}

#password_criteria {
    text-align: center;
    color: #114011;
    margin: 0px;
    padding: 0px;
}

#password_criteria:empty {
    display: none;
}