/*client_span_clicks.css*/


#user-responsible-modal {
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex; /* чтобы центрировать модал */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3100; /* поверх основного контента */
}

#user-responsible-modal.hidden {
  display: none;
}

#user-responsible-modal .modal-content {
  background-color: #f8f9fa;
  padding: 80px 60px;
  border-radius: 6px;
  min-width: 200px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  display: flex;
  flex-wrap: wrap; /* кнопки переносятся на следующую строку */
  gap: 20px;
  justify-content: flex-end; /* или center, если нужно */
  width: 80%;
}

#user-responsible-close {
  background: #d9534f; 
  color: #fff;
  border: none;
  border-radius: 4px;
  margin-right: 8px;
  cursor: pointer;
  font-weight: bold;
}

#user-responsible-close:hover {
  background: #c9302c;
}

.responsible-user-btn {
  background: #6c757d;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  padding: 40px 0px;
  transition: background 0.3s;
  margin-left: 20px;
  width: 120px;
  text-transform: uppercase;
  margin-top: 20px;
}

.responsible-user-btn:hover {
  background: #5a6268;
}
