@import "https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap";

/* src/styles.css */
:root {
  --primary: #023059;
  --primary-light: #034177;
  --primary-dark: #012340;
  --secondary: #ffffff;
  --accent: #f9e784;
  --tertiary: #f9e784;
  --disabled: #8b8c89;
  --error: #bf210a;
  --bg-main: #f1f5f9;
  --bg-container: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
* {
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  background-color: var(--bg-main);
  color: #333;
  line-height: 1.5;
}
.btn {
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.btn:active {
  transform: scale(0.97);
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.15s ease;
}
.btn:hover::after {
  background: rgba(255, 255, 255, 0.1);
}
.btn:active::after {
  background: rgba(0, 0, 0, 0.1);
}
.btn-primary {
  background-color: #023059;
  color: white;
  box-shadow: 0 2px 4px rgba(2, 48, 89, 0.1);
}
.btn-primary:hover {
  background-color: #034282;
  box-shadow: 0 4px 8px rgba(2, 48, 89, 0.2);
}
.btn-primary:active {
  background-color: #012547;
  box-shadow: 0 1px 2px rgba(2, 48, 89, 0.2);
}
.btn-danger {
  background-color: #dc3545;
  color: white;
  box-shadow: 0 2px 4px rgba(220, 53, 69, 0.1);
}
.btn-danger:hover {
  background-color: #e4606d;
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.2);
}
.btn-danger:active {
  background-color: #c82333;
  box-shadow: 0 1px 2px rgba(220, 53, 69, 0.2);
}
.btn-secondary {
  background-color: #6c757d;
  color: white;
  box-shadow: 0 2px 4px rgba(108, 117, 125, 0.1);
}
.btn-secondary:hover {
  background-color: #7d868d;
  box-shadow: 0 4px 8px rgba(108, 117, 125, 0.2);
}
.btn-secondary:active {
  background-color: #5a6268;
  box-shadow: 0 1px 2px rgba(108, 117, 125, 0.2);
}
.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.btn:disabled:hover::after,
.btn:disabled:active::after {
  background: none;
}
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
@media (max-width: 768px) {
  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  .btn-sm {
    padding: 0.2rem 0.4rem;
    font-size: 0.8rem;
  }
}
.card {
  background: var(--bg-container);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: box-shadow 0.3s ease;
}
.card:hover {
  box-shadow: var(--shadow-md);
}
.input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  background-color: var(--bg-container);
  transition: all 0.2s ease;
}
.input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 48, 89, 0.1);
}
.input.error {
  border-color: var(--error);
}
.text-error {
  color: var(--error);
}
.text-disabled {
  color: var(--disabled);
}
.bg-primary {
  background-color: var(--primary);
  color: var(--secondary);
}
.bg-accent {
  background-color: var(--accent);
  color: var(--primary);
}
.search-input {
  width: 100%;
  max-width: 600px;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/></svg>');
  background-repeat: no-repeat;
  background-position: 0.75rem center;
  background-size: 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: var(--primary);
  background-color: var(--bg-container);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}
.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 400px;
  overflow-y: auto;
  background: var(--bg-container);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  margin-top: 0.5rem;
  z-index: 1000;
}
.search-result-item {
  padding: 1rem;
  border-bottom: 1px solid var(--bg-main);
  cursor: pointer;
  transition: all 0.2s ease;
}
.search-result-item:last-child {
  border-bottom: none;
}
.search-result-item:hover {
  background-color: var(--bg-main);
}
.search-result-type {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: var(--primary);
  color: var(--secondary);
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.search-result-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.search-result-description {
  font-size: 0.875rem;
  color: #6b7280;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
