/* Inbox Page Specific Styles - Cosmic Theme */

/* Inbox-specific table columns */
.col-created {
  width: 12%;
}

.task-created-cell {
  text-align: center;
  padding: 12px 16px;
}

.task-created-at {
  font-weight: 500;
  color: #495057;
  font-size: 0.85rem;
}

.no-priority {
  color: #dc3545;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  display: inline-block;
  min-width: 80px;
}

/* Inbox instructions styling */
.inbox-instructions {
  margin-top: 24px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.inbox-instructions strong {
  color: #475569;
  font-weight: 600;
}

.inbox-instructions u {
  text-decoration: underline;
  text-decoration-color: #3b82f6;
  text-underline-offset: 2px;
}

/* Priority dot styling for inbox */
.task-priority-dot.priority-none {
  background-color: #dc3545;
  border-color: #c82333;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
}

.task-priority-dot.priority-high {
  background-color: #dc3545;
  border-color: #c82333;
}

.task-priority-dot.priority-medium {
  background-color: #ffc107;
  border-color: #e0a800;
}

.task-priority-dot.priority-low {
  background-color: #28a745;
  border-color: #1e7e34;
}

/* Inbox-specific empty state */
.empty-state h3 {
  background: linear-gradient(45deg, var(--cosmic-white), var(--cosmic-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.empty-state p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #6c757d;
}

.inline-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.inline-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Inbox table specific styling */
.tasks-table tbody tr.inbox-task {
  border-left: 4px solid #ffc107;
}

.tasks-table tbody tr.inbox-task:hover {
  background-color: #fff8e1;
  border-left-color: #ff9800;
}

/* Quick assignment buttons (for future use) */
.quick-assign-buttons {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.quick-assign-btn {
  padding: 2px 6px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.quick-assign-btn.project {
  background-color: #e3f2fd;
  color: #1565c0;
  border: 1px solid #bbdefb;
}

.quick-assign-btn.project:hover {
  background-color: #bbdefb;
  color: #0d47a1;
}

.quick-assign-btn.priority {
  background-color: #fff3e0;
  color: #e65100;
  border: 1px solid #ffcc02;
}

.quick-assign-btn.priority:hover {
  background-color: #ffcc02;
  color: #bf360c;
}

/* Responsive design for inbox */
@media (max-width: 768px) {
  .inbox-instructions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .inbox-instructions span:first-child {
    font-size: 18px;
  }
  
  .tasks-table {
    min-width: 600px;
  }
  
  .col-created {
    width: 15%;
  }
  
  .task-created-at {
    font-size: 0.8rem;
  }
}
