table {
    width: 100%;
    /* width: 20%; */
    border-collapse: collapse;
}
table, th, td {
    border: 1px solid black;
}
th, td {
    padding: 10px;
    text-align: center;
}
img {
    max-width: 100px;
    max-height: 100px;
    cursor: pointer;
}
.pagination {
    /* display: flex; */
    justify-content: center;
    margin-top: 20px;
}
.pagination a {
    padding: 8px 16px;
    margin: 0 4px;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.pagination a:hover {
    background-color: #f0f0f0;
}
.background {
    position: relative;
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-bottom: 20px;
}

/* Basic page styling */
.label-controls {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Form container styling */
.form-container {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 320px;
}

/* General input styling */
.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: #333;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;
  color: #333;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #5c9df6;
  outline: none;
}

textarea {
  resize: vertical;
  height: 80px;
}

/* File upload styling */
.input-group input[type="file"] {
  padding: 3px;
}

/* Checkbox group styling */
.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-group input {
  margin-right: 10px;
}

.checkbox-group label {
  font-size: 14px;
  color: #333;
}

/* Button styling */
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) {

}



/*----------------------------*/