/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f4f4f4;
}

/* Styling for the Cards */
.cards {
    width: 100%;
    max-width: 600px;
    /* margin: 0 auto; */
    margin-top: 20px;
    
}

#background-container {
    width: 100%;
    height: 520px; 
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

 

/* Button Styles */
#changeBackground {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

#changeBackground:hover {
    background-color: #0056b3;
}

/* Styling for the Left Sidebar */
.custom-design {
    background: #b3ccf8;
    position: relative;
    margin-bottom: 20px;
    padding: 15px;
    width: 100%;
    max-width: 250px;
    height: auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 10px 10px 5px lightblue;
      margin-top: 20px;
}

.custom-design input,
.custom-design button,
.custom-design label,
.custom-design select {
    margin-bottom: 10px;
}

.addproperties {
    color: blue;
    font: bold;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 19px;
}

/* Styling for the Editable Properties Sidebar */
.edit-properties {
    background: #b3ccf8;
    position: relative;
    padding: 50px;    
    width: 100%;
    max-width: 300px;
    height: auto;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 10px 10px 5px lightblue;
    margin-top: 20px;
    margin-bottom: 20px;
}

.edit-properties input,
.edit-properties button,
.edit-properties label,
.edit-properties select {
    margin-bottom: 10px;
}

.selected {
    border: 3px dashed #007bff; /* Dashed border to indicate selection */
    position: relative; /* To position the selection dots */
  }


 
.subtitle {
  font-size: 12px;
}
