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

/* src/styles/auth-buttons.css */
.auth-button {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 120px;
}
.auth-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.auth-button:active {
  transform: translateY(0);
}
.login-btn {
  background:
    linear-gradient(
      135deg,
      #007bff 0%,
      #0056b3 100%);
  color: white;
  border-color: #007bff;
}
.login-btn:hover {
  background:
    linear-gradient(
      135deg,
      #0056b3 0%,
      #004085 100%);
  color: white;
}
.logout-btn {
  background: transparent;
  color: #007bff;
  border-color: #007bff;
}
.logout-btn:hover {
  background: #007bff;
  color: white;
}
.auth-button.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  min-width: 100px;
}
.auth-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* src/styles/unauthorized.component.css */
.unauthorized-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background:
    linear-gradient(
      135deg,
      #f5f7fa 0%,
      #c3cfe2 100%);
  padding: 2rem;
}
.unauthorized-card {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 500px;
  width: 100%;
}
.unauthorized-card .icon-container {
  margin-bottom: 2rem;
}
.unauthorized-card .icon-container svg {
  color: #dc3545;
}
.unauthorized-card h1 {
  color: #dc3545;
  margin-bottom: 1rem;
  font-size: 2rem;
}
.unauthorized-card .error-message {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 1rem;
}
.unauthorized-card .requirement-message {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 6px;
  padding: 1rem;
  margin: 1.5rem 0;
  color: #856404;
}
.unauthorized-card .current-status {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 4px solid #dc3545;
}
.unauthorized-card .current-status h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #495057;
}
.unauthorized-card .status-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.unauthorized-card .status-label {
  font-weight: 600;
  color: #6c757d;
}
.unauthorized-card .status-value {
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-weight: 600;
  font-size: 0.875rem;
}
.unauthorized-card .status-value.authenticated {
  background: #d4edda;
  color: #155724;
}
.unauthorized-card .status-value.unauthorized {
  background: #f8d7da;
  color: #721c24;
}
.unauthorized-card .user-info {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: left;
}
.unauthorized-card .user-info h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #495057;
}
.unauthorized-card .user-info p {
  margin-bottom: 0.5rem;
  color: #6c757d;
}
.unauthorized-card .no-roles {
  color: #dc3545;
  font-style: italic;
}
.unauthorized-card .user-info code {
  background: #e9ecef;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-family: "Courier New", monospace;
  color: #495057;
}
.unauthorized-card .actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.unauthorized-card .btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.unauthorized-card .btn-primary {
  background: #007bff;
  color: white;
}
.unauthorized-card .btn-primary:hover {
  background: #0056b3;
}
.unauthorized-card .btn-secondary {
  background: #6c757d;
  color: white;
}
.unauthorized-card .btn-secondary:hover {
  background: #545b62;
}
@media (max-width: 768px) {
  .unauthorized-card {
    padding: 2rem;
  }
  .unauthorized-card .actions {
    flex-direction: column;
  }
}

/* src/styles/profile.component.css */
.profile-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 100%;
}
.profile-picture {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0d6efd;
  flex-shrink: 0;
}
.profile-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.profile-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  line-height: 1.2;
}
.profile-container .loading-text {
  font-size: 0.875rem;
  color: #6c757d;
}

/* src/styles/components.css */
.component-container {
  position: relative;
  width: 100%;
}
.component-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  color: #6c757d;
  font-size: 0.875rem;
}
.component-error {
  background: #f8d7da;
  color: #721c24;
  padding: 1rem;
  border-radius: 0.375rem;
  border: 1px solid #f5c6cb;
  margin: 1rem 0;
}
.component-success {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 0.375rem;
  border: 1px solid #c3e6cb;
  margin: 1rem 0;
}
.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}
.slide-in {
  animation: slideIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .component-container {
    padding: 1rem;
  }
  .component-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .component-actions .btn {
    width: 100%;
  }
}

/* src/styles/utilities.css */
.form-enhanced .form-control {
  border-radius: 8px;
  border: 2px solid #e9ecef;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}
.form-enhanced .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
  outline: none;
}
.form-enhanced .form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.form-enhanced .form-control.is-valid {
  border-color: #198754;
  box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}
.btn-enhanced {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.btn-enhanced:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn-enhanced:active {
  transform: translateY(0);
}
.card-enhanced {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}
.card-enhanced:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.card-enhanced .card-header {
  background:
    linear-gradient(
      135deg,
      #f8f9fa 0%,
      #e9ecef 100%);
  border-bottom: 1px solid #dee2e6;
  border-radius: 12px 12px 0 0;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-badge.success {
  background:
    linear-gradient(
      135deg,
      #d4edda 0%,
      #c3e6cb 100%);
  color: #155724;
  border: 1px solid #c3e6cb;
}
.status-badge.danger {
  background:
    linear-gradient(
      135deg,
      #f8d7da 0%,
      #f5c6cb 100%);
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.status-badge.warning {
  background:
    linear-gradient(
      135deg,
      #fff3cd 0%,
      #ffeaa7 100%);
  color: #856404;
  border: 1px solid #ffeaa7;
}
.status-badge.info {
  background:
    linear-gradient(
      135deg,
      #d1ecf1 0%,
      #bee5eb 100%);
  color: #0c5460;
  border: 1px solid #bee5eb;
}
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #0d6efd;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.text-gradient {
  background:
    linear-gradient(
      135deg,
      #0d6efd 0%,
      #6f42c1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.shadow-soft {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07) !important;
}
.shadow-medium {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}
.border-soft {
  border: 1px solid #e9ecef !important;
  border-radius: 8px !important;
}
@media (max-width: 768px) {
  .btn-enhanced {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  .status-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}

/* src/styles/styles.scss */
:root {
  --primary: #0d6efd;
  --secondary: #6c757d;
  --success: #198754;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #212529;
  --border: #dee2e6;
  --border-light: #dadada;
  --border-subtle: #f1f3f4;
  --radius: 0.375rem;
  --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --transition: all 0.15s ease-in-out;
  --font-family: "Inter", sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}
* {
  font-family: "Inter", sans-serif;
}
body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
button,
input,
select,
textarea {
  font-family: "Inter", sans-serif;
}
.btn {
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}
.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
}
.btn-xs {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}
.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
  transform: translateY(-1px);
}
.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: white;
}
.btn-outline-primary {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline-primary:hover {
  background-color: var(--primary);
  color: white;
}
.btn-outline-danger {
  background-color: transparent;
  border-color: var(--danger);
  color: var(--danger);
}
.btn-outline-danger:hover {
  background-color: var(--danger);
  color: white;
}
.btn-outline-secondary {
  background-color: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}
.btn-outline-secondary:hover {
  background-color: var(--secondary);
  color: white;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
table,
th,
td {
  font-family: "Inter", sans-serif;
}

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