:root {
  --dashboard-text-primary: #2c3e50;
  --dashboard-text-secondary: #7f8c8d;
  --dashboard-bg-thead: #f8fafe;
  --dashboard-radius: 8px;
  --dashboard-spacing-sm: 8px;
  --dashboard-spacing-md: 12px;
  --dashboard-spacing-lg: 16px;
  --dashboard-spacing-xl: 24px;
}

.dashboard-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dashboard-text-primary);
  margin-bottom: var(--dashboard-spacing-xl);
}

.dashboard-card-full-height {
  height: 100%;
  min-height: 400px;
}

.dashboard-chart-container {
  width: 100%;
  height: 300px;
  min-height: 300px;
  position: relative;
}

.open-tickets-category-item {
  margin-bottom: var(--dashboard-spacing-lg);
}

.open-tickets-category-item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--dashboard-spacing-sm);
}

.open-tickets-category-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--dashboard-text-primary);
}

.recent-tickets-checkbox-column {
  width: 40px;
}

.recent-tickets-header-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--dashboard-text-secondary);
}

.recent-tickets-id-text,
.recent-tickets-customer-text {
  font-size: 14px;
  color: var(--dashboard-text-primary);
}

.recent-tickets-id-text {
  font-weight: 500;
}

.recent-tickets-customer-wrapper {
  display: flex;
  align-items: center;
  gap: var(--dashboard-spacing-sm);
}

.recent-tickets-status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.recent-tickets-status-badge.resolved {
  background-color: #4caf50;
  color: white;
}

.recent-tickets-status-badge.in-progress {
  background-color: #ff9800;
  color: white;
}

.recent-tickets-status-badge.pending {
  background-color: #ffc107;
  color: white;
}

.recent-tickets-status-badge.default {
  background-color: #9e9e9e;
  color: white;
}

.recent-tickets-date-text {
  font-size: 14px;
  color: var(--dashboard-text-secondary);
}

.my-projects-thead,
.recent-tickets-thead {
  background-color: var(--dashboard-bg-thead);
  border-radius: var(--dashboard-radius);
}

.my-projects-thead th:first-child,
.recent-tickets-thead th:first-child {
  border-top-left-radius: var(--dashboard-radius);
}

.my-projects-thead th:last-child,
.recent-tickets-thead th:last-child {
  border-top-right-radius: var(--dashboard-radius);
}

.my-projects-header-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--dashboard-text-secondary);
}

.my-projects-project-wrapper {
  display: flex;
  align-items: center;
  gap: var(--dashboard-spacing-md);
}

.my-projects-logo-image,
.my-projects-logo-placeholder-wrapper {
  width: 40px;
  height: 40px;
}

.my-projects-logo-image {
  object-fit: contain;
}

.my-projects-logo-placeholder-wrapper {
  display: flex;
  border-radius: var(--dashboard-radius);
  background-color: #f0f0f0;
  align-items: center;
  justify-content: center;
}

.my-projects-logo-placeholder-wrapper.hidden {
  display: none;
}

.my-projects-name-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--dashboard-text-primary);
}

.my-projects-alt-text {
  font-size: 12px;
  color: var(--dashboard-text-secondary);
}

.my-projects-date-text {
  font-size: 14px;
  color: var(--dashboard-text-secondary);
}
