/* src/styles.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  background-color: hsl(220, 30%, 98%);
  color: hsl(220, 15%, 15%);
  line-height: 1.5;
}
button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
a {
  text-decoration: none;
  color: inherit;
}
.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.input-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(220, 15%, 15%);
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: hsl(0, 0%, 100%);
  border: 1px solid hsl(220, 20%, 90%);
  border-radius: 8px;
  font-size: 0.9375rem;
  color: hsl(220, 15%, 15%);
  transition: all 0.2s ease;
}
.form-control::placeholder {
  color: hsl(220, 10%, 50%);
  opacity: 0.7;
}
.form-control:focus {
  outline: none;
  border-color: hsl(220, 90%, 56%);
  box-shadow: 0 0 0 4px hsl(220, 90%, 96%);
}
[class^=btn-],
[class*=" btn-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}
.btn-primary {
  background:
    linear-gradient(
      135deg,
      hsl(220, 90%, 56%),
      hsl(220, 90%, 46%));
  color: white;
  box-shadow: 0 4px 12px hsla(220, 90%, 56%, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px hsla(220, 90%, 56%, 0.4);
}
.btn-outline {
  background: white;
  border: 1.5px solid hsl(220, 20%, 90%);
  color: hsl(220, 15%, 15%);
}
.btn-outline:hover {
  border-color: hsl(220, 90%, 56%);
  color: hsl(220, 90%, 56%);
  background: hsl(220, 90%, 96%);
}
.btn-text {
  background: transparent;
  color: hsl(220, 10%, 50%);
}
.btn-text:hover {
  background: hsl(220, 90%, 96%);
  color: hsl(220, 90%, 56%);
}
.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(220, 10%, 50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.btn-icon:hover {
  color: hsl(220, 90%, 56%);
  background: hsl(220, 90%, 96%);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-wrapper {
  background: white;
  width: 100%;
  max-width: 500px;
  max-height: 95vh;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: slide-up 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  display: flex;
  flex-direction: column;
}
@keyframes slide-up {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
h1 {
  font-size: 1.5rem;
}
@media (min-width: 940px) {
  h1 {
    font-size: 2.5rem;
  }
}
h2 {
  font-size: 1.375rem;
}
@media (min-width: 940px) {
  h2 {
    font-size: 2rem;
  }
}
h3 {
  font-size: 1.125rem;
}
@media (min-width: 940px) {
  h3 {
    font-size: 1.5rem;
  }
}
[class^=btn-],
[class*=" btn-"] {
  padding: 0.5rem 1rem;
}
@media (min-width: 940px) {
  [class^=btn-],
  [class*=" btn-"] {
    padding: 0.625rem 1.25rem;
  }
}
.modal-backdrop {
  padding: 1rem;
}
@media (min-width: 940px) {
  .modal-backdrop {
    padding: 1.5rem;
  }
}
.modal-header {
  padding: 1rem 1rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
@media (min-width: 940px) {
  .modal-header {
    padding: 1.75rem 2rem 1rem;
  }
}
.modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: hsl(220, 15%, 15%);
  letter-spacing: -0.02em;
  flex: 1;
}
@media (min-width: 940px) {
  .modal-header h3 {
    font-size: 1.5rem;
  }
}
.modal-header .close-btn {
  background: transparent;
  color: hsl(220, 10%, 50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  border: none;
  padding: 0;
}
.modal-header .close-btn:hover {
  background: hsl(220, 20%, 95%);
  color: hsl(220, 15%, 15%);
}
.modal-header .close-btn:active {
  transform: scale(0.9);
}
.modal-body {
  padding: 1rem 1rem 1.5rem;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 940px) {
  .modal-body {
    padding: 0 2rem 2rem;
    max-height: calc(100vh - 180px);
  }
}
.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
@media (min-width: 940px) {
  .modal-actions {
    flex-direction: row;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
  }
}
.modal-actions button {
  width: 100%;
}
@media (min-width: 940px) {
  .modal-actions button {
    width: auto;
  }
}
.tab-bar {
  display: flex;
  background: white;
  padding: 4px;
  border-radius: 14px;
  gap: 4px;
  width: 100%;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid hsl(220, 20%, 94%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
@media (min-width: 940px) {
  .tab-bar {
    margin-bottom: 2rem;
  }
}
.tab-bar::-webkit-scrollbar {
  display: none;
}
.tab-bar button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.5rem 0.875rem;
  border-radius: 10px;
  font-size: 0.875rem;
  color: hsl(220, 10%, 50%);
  background: transparent;
  transition: all 0.25s ease;
}
@media (min-width: 940px) {
  .tab-bar button {
    padding: 0.75rem 1.25rem;
  }
}
@media (min-width: 940px) {
  .tab-bar button {
    font-size: 0.9375rem;
  }
}
.tab-bar button.active {
  background: hsl(220, 30%, 98%);
  color: hsl(220, 90%, 56%);
  box-shadow: inset 0 0 0 1px hsla(220, 90%, 56%, 0.1);
}
.tab-bar button:hover:not(.active) {
  background: rgba(0, 0, 0, 0.03);
}
.user-list,
.modal-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.user-item-card,
.list-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.875rem 1rem;
  background: white;
  border: 1px solid hsl(220, 20%, 94%);
  border-radius: 16px;
  transition: all 0.2s ease;
  width: 100%;
  text-align: left;
}
@media (min-width: 940px) {
  .user-item-card,
  .list-item {
    padding: 1rem 1.25rem;
  }
}
.user-item-card:hover,
.list-item:hover {
  border-color: hsl(220, 90%, 56%);
  background: hsl(220, 90%, 96%);
  transform: translateX(4px);
}
.search-bar {
  margin-bottom: 2rem;
}
.search-bar .input-wrapper {
  position: relative;
  max-width: 100%;
  display: flex;
  align-items: center;
}
@media (min-width: 940px) {
  .search-bar .input-wrapper {
    max-width: 400px;
  }
}
.search-bar .input-wrapper .search-icon {
  position: absolute;
  left: 1rem;
  color: hsl(220, 10%, 50%);
  pointer-events: none;
  z-index: 10;
}
.search-bar .input-wrapper input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: hsl(0, 0%, 100%);
  border: 1px solid hsl(220, 20%, 90%);
  border-radius: 8px;
  font-size: 0.9375rem;
  color: hsl(220, 15%, 15%);
  transition: all 0.2s ease;
  padding-left: 2.75rem;
  background: white;
}
.search-bar .input-wrapper input::placeholder {
  color: hsl(220, 10%, 50%);
  opacity: 0.7;
}
.search-bar .input-wrapper input:focus {
  outline: none;
  border-color: hsl(220, 90%, 56%);
  box-shadow: 0 0 0 4px hsl(220, 90%, 96%);
}
.card-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.item-card {
  background: hsl(0, 0%, 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px hsla(220, 90%, 10%, 0.06);
  border: 1px solid hsl(220, 20%, 94%);
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 940px) {
  .item-card {
    padding: 1.5rem 2rem;
    gap: 1.5rem;
  }
}
.item-card:hover {
  border-color: hsl(220, 90%, 56%);
  box-shadow: 0 12px 30px hsla(220, 90%, 10%, 0.08);
  transform: translateX(8px);
}
.item-card .item-icon {
  min-width: 44px;
  height: 44px;
  background: hsl(220, 90%, 96%);
  color: hsl(220, 90%, 56%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 940px) {
  .item-card .item-icon {
    min-width: 52px;
    height: 52px;
    border-radius: 16px;
  }
}
.item-card .item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.item-card .item-info .item-title {
  font-weight: 800;
  font-size: 1.0625rem;
  color: hsl(220, 15%, 15%);
  letter-spacing: -0.01em;
}
@media (min-width: 940px) {
  .item-card .item-info .item-title {
    font-size: 1.25rem;
  }
}
.item-card .item-info .item-subtitle {
  font-size: 0.875rem;
  color: hsl(220, 10%, 50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 940px) {
  .item-card .item-info .item-subtitle {
    gap: 1.25rem;
  }
}
.item-card .item-info .item-subtitle .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background: hsl(220, 20%, 95%);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.item-card .item-info .item-subtitle .badge.admin {
  background: hsl(220, 90%, 96%);
  color: hsl(220, 90%, 56%);
}
.item-card .item-arrow {
  color: hsl(220, 10%, 85%);
  transition: all 0.3s ease;
}
.item-card:hover .item-arrow {
  color: hsl(220, 90%, 56%);
  transform: translateX(4px);
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(80px, 1fr));
  gap: 1px;
  background: hsl(220, 20%, 92%);
  border: 1px solid hsl(220, 20%, 92%);
  border-radius: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 940px) {
  .calendar-grid {
    grid-template-columns: repeat(7, 1fr);
    border-radius: 16px;
  }
}
.calendar-grid .weekday {
  background: hsl(220, 30%, 98%);
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: hsl(220, 10%, 50%);
  text-transform: uppercase;
}
@media (min-width: 940px) {
  .calendar-grid .weekday {
    padding: 1rem;
  }
}
@media (min-width: 940px) {
  .calendar-grid .weekday {
    font-size: 0.75rem;
  }
}
.calendar-grid .calendar-day {
  background: white;
  min-height: 70px;
  padding: 0.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  cursor: pointer;
}
@media (min-width: 940px) {
  .calendar-grid .calendar-day {
    min-height: 100px;
    padding: 1rem;
    gap: 0.5rem;
  }
}
.calendar-grid .calendar-day:hover {
  background: hsl(220, 30%, 99.5%);
}
.calendar-grid .calendar-day.not-current {
  opacity: 0.4;
  background: hsl(220, 20%, 98%);
}
.calendar-grid .calendar-day .day-number {
  font-weight: 700;
  color: hsl(220, 15%, 15%);
  font-size: 0.8125rem;
}
@media (min-width: 940px) {
  .calendar-grid .calendar-day .day-number {
    font-size: 1rem;
  }
}
.container-card {
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
}
@media (min-width: 940px) {
  .container-card {
    padding: 3rem;
    border-radius: 24px;
  }
}

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