/* Dashboard specific styles */
.dashboard {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
}

.dashboard-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
  width: 100%;
}

/* Tool Cards */
.tool-card {
  background: #222;
  border-radius: 8px;
  padding: 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #444;
  position: relative;
  overflow: hidden;
  gap: 20px;
}

.tool-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0f0, #00ff9d);
  opacity: 0.7;
}

.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 255, 0, 0.1);
}

.tool-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 255, 0, 0.05);
  border-radius: 50%;
  padding: 12px;
  border: 1px solid rgba(0, 255, 0, 0.2);
}

.tool-icon img {
  max-width: 100%;
  max-height: 100%;
  filter: drop-shadow(0 0 5px rgba(0, 255, 0, 0.5));
}

.tool-info {
  flex: 1;
}

.tool-info h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  color: #0f0;
  text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

.tool-info p {
  margin: 0;
  font-size: 14px;
  color: #aaa;
  line-height: 1.4;
}

.tool-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-left: auto;
  justify-content: center;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Buttons */
.button-primary {
  background: linear-gradient(to right, #0f0, #00ff9d);
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Consolas', 'Courier New', 'Monaco', monospace;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s;
  margin: 5px;
  box-sizing: border-box;
}

.button-primary:hover {
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
  transform: translateY(-2px);
}

.button-secondary {
  background: #333;
  color: #0f0;
  border: 1px solid #0f0;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Consolas', 'Courier New', 'Monaco', monospace;
  font-size: 14px;
  transition: all 0.2s;
}

.button-secondary:hover {
  background: #444;
  box-shadow: 0 0 8px rgba(0, 255, 0, 0.3);
}

.button-small {
  background: #444;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Consolas', 'Courier New', 'Monaco', monospace;
  font-size: 12px;
  transition: all 0.2s;
}

.button-small:hover {
  background: #555;
}

.button-small.danger {
  background: #662222;
}

.button-small.danger:hover {
  background: #883333;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 30px;
  color: #777;
  font-style: italic;
}

/* Footer styling */
footer {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 6px 12px;
  font-family: 'Consolas', 'Courier New', 'Monaco', monospace;
  font-size: 12px;
  color: #00ff00;
  z-index: 1500;
  border-radius: 4px;
  border: 1px solid rgba(0, 255, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

footer p {
  margin: 0;
  opacity: 0.9;
  text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
  white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tool-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  
  .tool-actions {
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
    margin-left: 0;
    padding: 0 5px;
  }
  
  .button-primary, .button-secondary {
    display: block;
    width: 100%;
    margin: 5px 0;
  }
} 