body {
  font-family: 'Segoe UI', sans-serif;
  background: #eaeef3; /* soft gray */
  margin: 0;
  padding: 0;
}

.container {
  position: relative;
  max-width: 1100px;
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.logo-wrapper {
  position: absolute;
  top: 0;
  right: 20px;
  margin-bottom: 10px;
}

.logo-wrapper img {
      width: 100px;;
      height: auto;
    }
    
.dashboard-button {
  padding: 10px 16px;
  background-color: #1abc9c;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}

.dashboard-button:hover {
  background-color: #16a085;
}


h1 {
  text-align: center;
  color: #2c3e50;
  margin: 0 0 16px;
  font-size: 22px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.top-bar a button {
  padding: 10px 16px;
  background-color: #3498db;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.top-bar a button:hover {
  background-color: #2980b9;
}

.filter-bar {
  display: flex;
  gap: 10px;
  align-items: center;
}

.filter-bar select {
  padding: 8px 10px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #ecf0f1;
  color: #34495e;
  width: auto;
}

/* === Card Layout === */
.dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  padding: 30px 20px;
  background-color: #f5f7fa; /* soft contrast */
  border-radius: 12px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12); /* deeper shadow */
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}
.card.StopOfWork {
  border-left: 6px solid #e74c3c;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.type {
  font-weight: bold;
  color: #34495e;
}

.status {
  font-size: 13px;
  font-weight: bold;
  color: #e67e22;
}

.status.closed {
  color: #2ecc71;
}

.description {
  margin: 10px 0;
  font-size: 14px;
  color: #2c3e50;
}

.meta {
  font-size: 13px;
  color: #7f8c8d;
  margin-bottom: 8px;
  line-height: 1.5;
}

.acknowledged {
  font-size: 13px;
  color: #2980b9;
  margin-bottom: 12px;
}

.actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.actions form {
  display: inline;
}

.actions input[type="text"] {
  font-size: 12px;
  padding: 4px;
  width: 90px;
}

.actions button {
  font-size: 11px;
  padding: 4px 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background-color: #3498db;
  color: white;
}

.actions button:hover {
  background-color: #2980b9;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
