*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
/*  list-style: none;*/
  text-decoration: none;
}
html{
  scroll-behavior: smooth;
}
body{
  background: #25353e;
}
header{
  position: fixed;
  list-style: none;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
/*  background-color: rgb(255, 250, 250);*/
  color: #f9f9f9;
    background: #25353e;
    opacity: 0.95;

}

/* Hidden state for the animation */
.animattion-scroll-content {
    opacity: 0;
    transform: translateY(200px);
    transition: opacity 1s ease, transform 1s ease;
}

/* Visible state when content is scrolled into view */
.animattion-scroll-content.animattion-visible {
    opacity: 1;
    transform: translateY(0);
}


.logo img{
  max-width: 100px;
  height: auto;
}
.navmenu{
  display: flex;
  list-style: none;
}
.navmenu a{
  padding: 10px 20px;
  color: #f9f9f9;
  text-transform: capitalize;
  font-weight: 500;
  transition: all .42s ease;
}
.navmenu a:hover{
  color: orange;
  /*font-size: 20px;*/
  text-decoration: underline;
}

.nav-icon{
  display: flex;
  align-items: center;
}

.btn{
  display: inline-block;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid #cc3333;
  padding: 10px 30px;
  background-color: #cc3333;
  border-radius: 30px;
  color: #fff;
  letter-spacing: 1px;
  margin-right: 15px;
  transition: all .42s ease;
}

.btn:hover{
  transform: scale(1.1);
}
#menu-icon{
  font-size: 35px;
  /*color: #292929;*/
  z-index: 10001;
  cursor: pointer;
  display: none;
}

section{
  padding: 60px 20%;
}
@media (max-width: 1000px) {
  section{
  padding: 60px 12%;
}
}

.home{
  width: 100%;
  height: 100vh;
  
  
  background: url('https://update-art.com/images/back.svg');
  display: grid;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: .01rem;

}

.home-img img{
  max-width: 100%;
  width: 100%;
  height: auto;
}

.home-text h4{
  color: #f9f9f9;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -1px;
  font-family: 'Lobster', cursive;
}
.home-text h1{
  font-size: 50px;
  color: #f9f9f9;
  font-weight: 700;
  line-height: 1.2;
  margin: 23px 0;
}
.home-text h1 span{
  color: #cc3333;
  text-decoration: underline;
}
.home-text p{
  color: #666;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 40px;
}




.home-map{
  width: 100%;
/*  height: 100vh;*/
  
  
  background: url('https://update-art.com/images/back.svg');
/*  display: grid;*/

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
/*  grid-template-columns: repeat(2, 1fr);*/
  align-items: center;
/*  gap: .01rem;*/

}

.home-img-map img{
  max-width: 100%;
  width: 100%;
  height: auto;
}



.contact-home{
 display: flex;
  justify-content: center;
/*  background-color: DodgerBlue;*/
/*  flex-wrap: wrap;*/
  flex-direction: row;

/*  width: 100%;*/

  
/*  background: url('https://update-art.com/images/back.svg');*/

}
.contact-home .textdata{
 width: 20rem;
 padding: 1rem;
 margin: 0.5rem;
 border-radius: 10px;
 text-align: center;
}

.contact-home div{
  background: rgba(255, 255, 255, 0.8);
}

.contact-home-img img{
  max-width: 100%;
  width: 100%;
  height: auto;
}

@media (max-width: 600px) {
  .contact-home {
    flex-direction: column;
  }
  .contact-home .textdata{
 width: 100%;
  margin: 1rem 0; 
}
}



/* ============================ right text ========================= */
.home-text-r{
  text-align: right;
}
.home-text-r h4{
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -1px;
  font-family: 'Lobster', cursive;
}
.home-text-r h1{
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin: 23px 0;
}
.home-text-r h1 span{
  color: #f5f5f5;
  text-decoration: underline;
}
.home-text-r p{
  color: #fff;
  font-size: 1.2rem;
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 40px;
}

/*=========================== about us ==========================*/
.offer-card {
            position: relative;
/*            width: 300px;*/
/*            height: 20rem;*/
            background: #fff;
/*            border: 1px solid #ddd;*/
            border-radius: 20px;
            overflow: hidden;

            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        .offer-card h4{
            text-align: center;
            padding: .51rem;
            background-color: #25353e;
            color: whitesmoke;
            font-weight: 200;
        }

        .offer-card:hover {
            transform: scale(1.01);

        }

        .offer-card .hover-text {
            position: absolute;
/*            top: 0;*/
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            text-align: center;
            justify-content: center;
            align-items: center;
            margin: 1rem 1rem 3rem 1rem;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 10px;
            padding: 1rem;
            color: #fff;
            font-size: 1rem;
/*            font-weight: bold;*/
            opacity: 0;
            transition: opacity 0.3s;
        }

        .offer-card:hover .hover-text {
            opacity: 1;
        }
        

.home-text-about-about{
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 2rem 1rem;
  border-radius: 20px;

}
.home-text-about-about h4{
  color: #f1f1f1;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0px;
  font-family: 'Lobster', cursive;
}
.home-text-about-about h1{
  font-size: 50px;
  color: whitesmoke;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0;
}

.home-text-about-about p{
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
/*  line-height: 30px;*/
/*  font-weight: 400;*/
/*  margin-bottom: 40px;*/

}

.home-text-about{
  text-align: center;
/*  background-color: rgba(0, 0, 0, 0.2);*/
/*  padding: 1rem;*/
  border-radius: 20px;
}
.home-text-about h4{
  color: #f1f1f1;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0px;
  font-family: 'Lobster', cursive;
}
.home-text-about h1{
  font-size: 50px;
  color: whitesmoke;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0;
}

.home-text-about p{
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
/*  line-height: 30px;*/
/*  font-weight: 400;*/
/*  margin-bottom: 40px;*/

}

/*=========================== other agb data =====================*/
.other-data h4{
  color: white;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -1px;
  font-family: 'Lobster', cursive;
  text-align: center;
  padding-top: 40px;
}

.other-data p{
  color: rgb(160,160,160);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 40px;
  text-align: justify;
}
.other-data p span{
  font-weight: bolder;
}

/*============================ Contact us ==================== */
.home-text-contact{
  text-align: left;
  margin: 0 10px 0 10px;
  color: whitesmoke;
}
.home-text-contact form{
  margin: 10px;
}


.main-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.main-btn .btn1{
  display: inline-block;
  color: #fff;
  font-size: 18px;
  border-radius: 10px;
  text-transform: capitalize;
  background-color: #a66a0f;
  padding: 16px 40px;
  transition: all .42s ease;
}
.main-btn .btn1:hover{
  background-color: #292929;
}
.btn2{
  font-size: 15px;
  font-weight: 500;
  color: #292929;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
}
.btn2 span{
  padding: 5px;
}
.btn2 span i{
  height: 50px;
  width: 50px;
  background: #cc3333;
  color: #fff;
  font-size: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margen-right: 15px;
  transition: all .42s ease;
}
.btn2 span i:hover{
  transform: translateY(-5px);
  background-color: #292929;
}








/*============= resposive dsign ==================*/

@media(max-width:945px){
  header{
    padding: 0px 3%;
    transition: .3s;
  }

}

@media(max-width: 1140px){
  .home{
    grid-template-columns: 1fr;
    height: 100%;
  }
  header.sticky{
    background: $fff;
    padding: 0px 3%;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  }
  .home-text, .home-text-r{
    padding-top: 50px;
    text-align: center;
  }
  section{
    padding: 60px 3%;
  }
  .home-img img{
    width: 100%;
    max-width: 600px;
  }
  .home-img{
    text-align: center;
  }
  .navfot{
    flex-direction: column;
    align-items: center;
  }
  .navfot a{
    margin: 10px;
  }
}

@media(max-width: 855px){
  #menu-icon{
    display: block;
  }
  .home-text-r h1{
  font-size: 2rem;
}
.offer-card {
            border-radius: 10px;
            
        }
  .navmenu{
    position: absolute;
    top: 100%;
    right: -100%;
    width: 300px;
    height: 400px;
    background-color: #cc3333;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 90px 30px;
    transition: all .42s ease;
  }
  .navmenu a{
    display: block;
    margin: 5px 5px;
    transition: all .42px ease;
  }
  .navmenu a:hove{
    color: #fff;
    transform: translateX(-5px);
  }
  .navmenu.open{
    right: 0;
  }



  .home-text-about-about{
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 2rem 1rem;
  border-radius: 20px;

}
.home-text-about-about h4{
  color: #f1f1f1;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0px;
  font-family: 'Lobster', cursive;
}
.home-text-about-about h1{
  font-size: 2rem;
  color: whitesmoke;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0;
}

.home-text-about-about p{
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
/*  line-height: 30px;*/
/*  font-weight: 400;*/
/*  margin-bottom: 40px;*/

}


}


/* ======================== gellery ==================== */

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}
.gellery{
  padding: 10px;
}
/* Main CSS */
.grid-wrapper > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid-wrapper > div > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.grid-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
.grid-wrapper .wide {
  grid-column: span 2;
}
.grid-wrapper .tall {
  grid-row: span 2;
}
.grid-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}


/* =============================== Rooms list ======================== */
.container {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
/*  padding: 2px 16px;*/
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}


/*================================ Contact form =========================*/
/*input[type=text], input[type=number], input[type=email], select, textarea {*/
/*  width: 20rem;*/
/*  padding: 12px;*/
/*  border: 1px solid #ccc;*/
/*  border-radius: 4px;*/
/*  outline-style: none;*/
/*  box-sizing: border-box;*/
/*  margin-top: 6px;*/
/*  margin-bottom: 16px;*/
/*  resize: vertical;*/
/*}*/
/*input[type=text], input[type=number], input[type=email] {*/
/*  width: 33%;*/
/*}*/
/*textarea {*/
/*  width: 100%;*/
/*}*/

/*input[type=submit] {*/
/*  width: 100%;*/
/*}*/



/*================= footer ==========================*/

/*footer{
  width: 100%;
  height: auto;
  bottom: 0;
  right: 0;
  z-index: 1000;
  justify-content: space-between;
  padding: 20px 10%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: rgb(255, 250, 250);
}
.navfot-icon{
  font-size: 40px;
}
.navfot-icon:hover{
  font-size: 45px;
}

.navfot{
  display: flex;
}
.navfoot-contact{
  font-size: 25px;
}
.navfot a{
  padding: 10px 10px;
  color: #292929;
  text-transform: capitalize;
  font-weight: 500;
  transition: all .42s ease;
}
.navfot a:hover{
  color: #cc3333;
  text-decoration: underline;
}
  .navfot li{
    margin: 10px;
  }*/

.footer{
background:#000;
padding:30px 0px;
font-family: 'Play', sans-serif;
text-align:center;
}

.footer .row{
width:100%;
margin:1% 0%;
padding:0.6% 0%;
color:gray;
font-size:0.8em;
}

.footer .row a{
text-decoration:none;
color:gray;
transition:0.5s;
}

.footer .row a:hover{
color:#fff;
}

.footer .row ul{
width:100%;
}

.footer .row ul li{
display:inline-block;
margin:0px 30px;
}

.footer .row a i{
font-size:2em;
margin:0% 1%;
}

@media (max-width:720px){
.footer{
text-align:left;
padding:5%;
}
.footer .row ul li{
display:block;
margin:10px 0px;
text-align:left;
}
.footer .row a i{
margin:0% 3%;
}
}

/*================================== rooms list ==================================*/

.row {
/*  margin: 8px;*/
}

/* Add padding BETWEEN each column */
.row,
.row > .column {
/*  padding: 8px;*/

}

/* Create four equal columns that floats next to each other */
.column {
  float: left;
  width: 23.7%;
  margin: 8px;
/*  padding: 8px;*/
}

/* Clear floats after rows */ 
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.content {
  background-color: white;
  padding: 10px;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 900px) {
  .column {
    width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    margin: 1rem 0;
  }
}

/*============================ link other pages =====================*/
.agb, .datenschut, .impressum{
  display: none;
}
.main-page{
  display: block;
}











/*============================= Menu ============================*/




.menu-filterDiv {
  float: left;
  background-color: #2196F3;
  color: #ffffff;
  width: 20rem;
  height: 20rem;
/*  line-height: 100px;*/
  text-align: center;
  margin: 0.5rem;
  display: none;
  border-radius: 10px;


  transform: scale(0.5);
  transition: all 0.5s ease-in-out;


}

.menu-filterDiv:hover {
            transform: scale(1.02);
            
        }

.menu-filterDiv div{
  position: absolute;
/*            top: 0;*/
            left: 0;
            right: 0;
            bottom: 0;
/*            display: flex;*/
/*            text-align: center;*/
/*            justify-content: center;*/
            align-items: center;
/*            margin: 0.2rem;*/
            background: rgba(255, 255, 255, 1);
            border-radius: 10px;
            padding:  0.5rem;
            color: #000;
            font-size: 0.9rem;
/*            font-weight: bold;*/
            opacity: 1;
            transition: opacity 0.3s;
}

.menu-filterDiv div p b{
  font-size: 1.1rem;
}

.menu-filterDiv img{
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}


.menu-show {
  display: block;
  animation: fadeInScale 0.5s ease-in-out;
  opacity: 1;
  transform: scale(1);
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


.item_image_back{
    background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.menu-container {
  margin-top: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
/*  background-color: DodgerBlue;*/
  flex-wrap: wrap;
  padding: 0 5rem;
}



.menu-myBtn{
  display: flex;
  justify-content: center;
/*  background-color: DodgerBlue;*/
  flex-wrap: wrap;
}

/* Style the buttons */
.menu-btn {
  border: none;
  outline: none;
  padding: .71rem 2rem;
  margin: .2rem;
  border-radius: 10px;
  background-color: #f1f1f1;
  cursor: pointer;
  font-size: 1rem;
/*  opacity: 0.8;*/
  transition: all .42s ease;
}

.menu-btn:hover {
/*  opacity: 1;*/
  background-color: #a66a0f;
  color: white;
}

.menu-btn.menu-active {
  background-color: #a66a0f;
  color: white;
}




@media(max-width: 855px){
  .menu-filterDiv {
  width: 95%;
  height: 18rem;

}
.menu-container {
  margin-top: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
/*  background-color: DodgerBlue;*/
  flex-wrap: wrap;
  padding: 0;
}
}










/*======================== Comboo =============================*/


.row-comboo{
  display: flex;
  justify-content: center;
/*  background-color: DodgerBlue;*/
  flex-wrap: wrap;
}

.row-comboo .column-comboo{
  width: 20rem;
  margin: 0.5rem;
  
}


@media(max-width: 855px){
  .row-comboo .column-comboo{
  width: 90%;
  margin: 0.8rem 0;
/*  height: 18rem;*/

}
}














/*============================= Gallery ===========================*/

.gallery-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 20rem);
            gap: 3px;
            width: 100%;
/*            max-width: 1200px;*/
        }

        .gallery-item {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
/*            border: 5px solid #ddd;*/
/*            border-radius: 8px;*/
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease-in-out;
        }

        .gallery-item:hover {
/*            transform: scale(1.05);*/
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }


@media(max-width: 855px){
  .gallery-container {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            grid-template-rows: repeat(8, 20rem);
            gap: 3px;
            width: 100%;
/*            max-width: 1200px;*/
        }
}









/*========================= Contact Form ======================*/

.contact-contact-section {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 2rem;
            padding: 7rem 10rem;
            background-color: #f1f1f1;

/*            width: 100%;*/
/*  height: 100vh;*/
  
  
  background: url('https://update-art.com/images/back.svg');
/*  display: grid;*/

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
/*  grid-template-columns: repeat(2, 1fr);*/
/*  align-items: center;*/
/*  gap: .01rem;*/
        }

        .contact-contact-section .contact-info {
            background: white;
            border-radius: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
        }
        .contact-contact-section .contact-map {
            background: white;
            border-radius: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
/*            padding: 20px;*/
        }

        .contact-contact-section .contact-info h3 {
            margin-bottom: 15px;
            color: #444;
            text-align: center;
            font-size: 1.5rem;
        }

        .contact-contact-section .contact-info p {
            margin: 10px 0;
            line-height: 1.6;
            color: #555;
        }

        .contact-contact-section .contact-info p span {
            font-weight: bold;
            color: #333;
        }
        .contact-contact-section .main-btn {
            font-weight: bold;
            color: #333;
        }


        .contact-contact-section .main-btn .btn1{
            display: inline-block;
            color: #fff;
            font-size: 18px;
            border-radius: 10px;
            text-transform: capitalize;
            background-color: #a66a0f;
            padding: 16px 40px;
            transition: all .42s ease;
          }
          .contact-contact-section .main-btn .btn1:hover{
            background-color: #292929;
          }


        .contact-contact-section .contact-map iframe {
            width: 100%;
            height: 100%;
            border: 0;
            border-radius: 20px;
        }

        .contact-contact-button {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            background-color: #28a745;
            color: white;
            text-decoration: none;
            font-size: 16px;
            border-radius: 5px;
        }

        .contact-contact-button:hover {
            background-color: #218838;
        }

        @media (max-width: 768px) {
            .contact-contact-section {
                grid-template-columns: 1fr;
                gap: 2rem;
            padding: 2rem 0.5rem;
            }

            .contact-contact-section .contact-map {
                height: 20rem;
            }
        }






.language-switcher {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
}

.language-button {
    background-color: #007BFF;
    color: white;
    border: none;
/*    padding: 10px 20px;*/
/*    font-size: 16px;*/
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.language-button img{
    width: 3rem;
}

.language-button:hover {
    background-color: #0056b3;
}

/* Dropdown Menu */
.language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    /*min-width: 150px;*/
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;
    overflow: hidden;
}

.language-dropdown a {
    display: block;
    padding: 5px 10px;
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}
.language-dropdown img {
    width: 5rem;
}

.language-dropdown a:hover {
    background-color: #f1f1f1;
}

/* Show Dropdown on Hover */
.language-switcher:hover .language-dropdown {
    display: block;
}










.item-add form {
            max-width: 500px;
            margin: auto;
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .item-add label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        .item-add input, .item-add textarea, .item-add select, .item-add button {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }
        .item-add button {
            background-color: #28a745;
            color: white;
            cursor: pointer;
        }
        .item-add button:hover {
            background-color: #218838;
        }