.clientarea {}
.clientarea a {
    text-decoration: none;
    color: #000;
}
.clientarea a:hover {
    text-decoration: underline;
    color: var(--red);
}

.upload-box {
    border: 2px dashed #ccc !important;
    border-radius: 8px;
    background: #f9f9f9;
    padding: 20px;
    cursor: pointer;
}

.dz-success-mark,
.dz-error-mark {
  display: none !important;
}
.dz-image-preview {
    text-align: center;
}

.clientarea .btn-list li:hover {
    color:var(--red);
    cursor: pointer;
}

.btn-list {
  list-style: none;
  padding-left: 0;
}
.btn-list li {
  background: rgba(255,255,255,.05);
  border-radius: 10px;
  padding: .7em 1em;
  margin-bottom: .4em;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 2px rgba(0,0,0,.2);
  transition: all .2s ease;
}
.btn-list li i {
  color: var(--bs-warning, #ffc107);
  font-size: 1.2em;
  margin-right: .6em;
}
.btn-list li:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}

.btn-edit-activity i {
    pointer-events: none;
}
.btn-delete-activity i {
    pointer-events: none;
}
.btn-view-activity i {
    pointer-events: none;
}

.swal-wide {
    max-width: 95vw !important;
}


.dropzone .dz-preview .dz-image {
    width: 250px;
    height: 250px;      /* fixe Höhe */
    overflow: hidden;
}

.dropzone .dz-preview .dz-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* füllt alles, schneidet aber ab */
}

.dropzone .dz-upload {
    display: none !important;
}
.dropzone .dz-progress {
    display: none !important;
}