.upload-box_resim {
    background: white;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 20px;
  }
  
  .photo-header_resim {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
  }
  
  .photo-header_resim button {
    background-color: #007782;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .photo-header_resim button:hover {
    background-color: #005f66;
  }
  
  .photo-count_resim {
    font-size: 14px;
  }
  
  .preview-container_resim {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .photo-item_resim {
    position: relative;
    width: 85px;
    height: 85px;
    flex-shrink: 0;
    cursor: grab;
  }
  
  .photo-item_resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: transform 0.3s;
  }
  
  .remove-btn_resim {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
    z-index: 10; /* Daha yüksek z-index */
}
  
  .rotate-btn_resim {
    position: absolute;
    bottom: 4px;
    right: 4px;
    color: #007782;
    background: white;
    border-radius: 50%;
    padding: 3px;
    font-size: 14px;
    cursor: pointer;
    z-index: 2;
  }
  
  .cover-label_resim {
    position: absolute;
    top: 4px;
    left: 4px;
    background-color: #007782;
    color: white;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 4px;
    z-index: 3;
  }
  
  .photo-item_resim[data-cover="true"] {
    outline: 2px solid #007782;
  }


  
  #errorMessage_resim {
    color: red;
    font-size: 14px;
    margin-top: 10px;
    display: none;
  }
  