
.photo-preview {
    position: relative;
    width: 100%;
    padding: 10px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    overflow: hidden;
    text-align: center;
    margin-top: 10px;
  }

  .photo-preview img {
    width:100px;
    height: auto;
    display: inline-block;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}


.photo-preview img:hover {
    transform: scale(1.05);
}


.photo-icon {
  font-size: 75px;
  color: #999;
  margin-bottom: 10px;
}


.photo-text {
  font-size: 20px;
  color: #999;
  display: block;
}


.button-group {
  margin-bottom: 10px;
}

.rte-floatpanel-paragraphop {
  display: none !important;
}

.language-button {
  padding: 10px 20px;
  margin: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f8f9fa;
  cursor: pointer;
}



.language-button.active {
  background-color: #ff9700; /* Change to desired color for active state */
  color: white;
  border-color: #ff5e00; /* Optional: to match the border color with background */
}

.language-button:hover {
  background-color: #ff9700a3; /* Optional: change color on hover */
  border-color: #ff5e00; 
}


.badge-success {
  color: #fff;
  background-color: #28a745;
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

.badge {
  display: inline-block;
  padding: .25em .4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25rem;
}

