
#task-user {
  width: 300px !important;
  min-width: 300px;
}

#filter-colaborador {
  width: 300px !important;
  min-width: 300px;
}

.kanban-filter-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-left: 10px;
}

.kanban-filter-button {
  background-color: #ffffff;
  color: #333;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.3s ease;
}

.kanban-filter-button:hover {
  background-color: #f0f0f0;
}

.clear-filters-button {
  background-color: #f8f9fa;
  color: #333;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}

.clear-filters-button:hover {
  background-color: #e2e6ea;
}


body {
  font-family: 'Segoe UI', Tahoma, sans-serif;  
  background-color: #f0f2f5;
  margin: 0;
  padding: 0;
}

.kanban-wrapper {
  margin-top: 4rem;
  padding: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  border: 1px solid #dee2e6;
  padding: 10px;
  vertical-align: top;
}

thead .title-cell {
  background-color: #ffffff;
  font-size: 26px;
  font-weight: bold;
  text-align: left;
  padding: 20px 10px;
  border: none;
  color: #2c3e50;
}

thead .column-header {
  background-color: #007bff;
  color: white;
  text-align: center;
  font-size: 16px;
}

.card {
  background-color: #ecf0f1;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 6px;
  cursor: grab;
  color: #2c3e50;
}

.card:active {
  cursor: grabbing;
}

.add-button {
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
}

.add-button:hover {
  background-color: #218838;
}

/* Modal principal */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 600px; /* ou 550px, conforme seu gosto */
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}


.form-row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.form-row label {
  flex: 0 0 130px;
  margin-right: 10px;
  font-weight: bold;
  color: #2c3e50;
}

.form-row input,
.form-row select,
.form-row textarea {
  flex: 1;
  max-width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;  
  background-color: #fff;
}


.popup button {
  padding: 10px 16px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.popup button:hover {
  background-color: #0056b3;
}

.popup a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 100%;
}

td.highlight {
  background-color: #d1ecf1;
}

.solicitante-header {
  background-color: #ffeeba;
  font-size: 1.2em;
  font-weight: bold;
  padding: 6px 10px;
  margin-bottom: 6px;
  border-radius: 4px;
  text-align: center;
}

#log-modal.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: flex-start;
  z-index: 1000;
}

#log-modal .popup {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  margin-top: 80px;
}

#log-modal .popup h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #2c3e50;
  font-size: 20px;
  text-align: center;
}

#log-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}

#log-table th, #log-table td {
  border: 1px solid #dee2e6;
  padding: 8px;
  text-align: left;
  font-size: 14px;
  color: #2c3e50;
}

#log-table th {
  background-color: #007bff;
  color: white;
  font-weight: bold;
}

#log-modal .popup button {
  padding: 8px 14px;
  background-color: #dc3545;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

#log-modal .popup button:hover {
  background-color: #c82333;
}

.btn-log-clean {
  background-color: transparent;
  color: black;
  border: none;
  font-weight: bold;
  padding: 6px 12px;
  cursor: pointer;
}

.btn-log-clean:hover {
  text-decoration: underline;
}


