
/* Button styling */
.form-container {
  background: #a99fe0;
  padding: 40px;
  border-radius: 8px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
   box-shadow: 14px 14px 20px rgb(155, 130, 130);  /* Apply box shadow */
  /* width: 420px; */
  font-family: Arial, Helvetica, sans-serif;
  /* font-size: 19px; */
  /* margin: 15px; */
}
 

button {
  width: 100%;
  padding: 10px;
  background-color: #5c9df6;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #4a8cd7;
}
.input-group select,
.input-group input[type="color"] {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;
  color: #333;
}

.input-group select:focus,
.input-group input[type="color"]:focus {
  border-color: #5c9df6;
  outline: none;
}


.uploaded-image {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    height: auto;
    cursor: move;
    z-index: 500;
    border: 2px dashed transparent;
}

.uploaded-image.selected {
    border-color: red;
}

.uploaded-image img {
    width: 100%;
    height: 100%;
    display: block;
}
.ui-resizable-se {
  background-image: none !important;
  background-color: transparent !important;
}


/*------Media QUery-----------*/


@media(min-width:700px) {

}


.edit-properties {
   all: unset;
   float: left;
   margin-right: 10px;
   background: #a99fe0;
   box-shadow: 5px 5px 10px rgb(155, 130, 130);  /* Apply box shadow */
}
.addproperties {
    all: unset;
    color: blue;
    font: bold;
    font-size: 28px;
}

 