/* Property Manager - Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

/* Auth Container */
.pm-auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.pm-auth-card {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 450px;
}

.pm-auth-card h1 {
  margin-bottom: 24px;
  text-align: center;
  color: #333;
}

.pm-auth-footer {
  margin-top: 20px;
  text-align: center;
  color: #666;
}

.pm-auth-footer a {
  color: #0073aa;
  text-decoration: none;
}

.pm-auth-footer a:hover {
  text-decoration: underline;
}

/* Form Styles */
.pm-form-group {
  margin-bottom: 16px;
}

.pm-form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

.pm-form-group input,
.pm-form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.2s;
}

.pm-form-group input:focus,
.pm-form-group select:focus {
  outline: none;
  border-color: #0073aa;
}

.pm-form-row {
  display: flex;
  gap: 16px;
}

.pm-form-row .pm-form-group {
  flex: 1;
}

/* Buttons */
.pm-btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.pm-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.pm-btn-primary {
  background-color: #0073aa;
  color: #fff;
  width: 100%;
}

.pm-btn-primary:hover:not(:disabled) {
  background-color: #005a87;
}

.pm-btn-secondary {
  background-color: #f0f0f0;
  color: #333;
}

.pm-btn-secondary:hover:not(:disabled) {
  background-color: #e0e0e0;
}

.pm-btn-danger {
  background-color: #dc3545;
  color: #fff;
}

.pm-btn-danger:hover:not(:disabled) {
  background-color: #c82333;
}

/* Alerts */
.pm-alert {
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.pm-alert-error {
  background-color: #fee;
  color: #c00;
  border: 1px solid #fcc;
}

.pm-alert-success {
  background-color: #efe;
  color: #060;
  border: 1px solid #cfc;
}

/* Dashboard */
.pm-dashboard {
  min-height: 100vh;
  background-color: #f5f5f5;
}

.pm-dashboard-header {
  background: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pm-dashboard-header h1 {
  font-size: 24px;
  color: #333;
}

.pm-dashboard-content {
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cards */
.pm-card {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

.pm-card h2 {
  margin-bottom: 8px;
  color: #333;
}

.pm-card h3 {
  margin-bottom: 16px;
  color: #333;
  font-size: 18px;
}

.pm-card p {
  color: #666;
}

/* Profile Info */
.pm-profile-info {
  list-style: none;
}

.pm-profile-info li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.pm-profile-info li:last-child {
  border-bottom: none;
}

.pm-profile-info strong {
  display: inline-block;
  width: 150px;
  color: #666;
}

/* Actions */
.pm-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Rating */
.pm-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pm-rating-value {
  font-size: 32px;
  font-weight: bold;
  color: #333;
}

.pm-rating-stars {
  color: #f5a623;
  font-size: 24px;
}

.pm-rating-count {
  color: #666;
}

/* Match Cards */
.pm-match-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}

.pm-match-card:last-child {
  margin-bottom: 0;
}

.pm-match-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.pm-match-header h4 {
  margin: 0;
  color: #333;
}

.pm-badge {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.pm-badge-pending {
  background: #fff3cd;
  color: #856404;
}

.pm-badge-accepted {
  background: #d4edda;
  color: #155724;
}

.pm-badge-rejected {
  background: #f8d7da;
  color: #721c24;
}

.pm-match-reason {
  font-size: 13px;
  color: #888;
  font-style: italic;
  margin-top: 4px;
}

.pm-match-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.pm-match-actions .pm-btn {
  width: auto;
  padding: 8px 20px;
}

.pm-contact-info {
  margin-top: 8px;
  padding: 8px 12px;
  background: #f0f7ff;
  border-radius: 4px;
  font-size: 14px;
}

.pm-contact-info strong {
  display: block;
  margin-bottom: 4px;
  color: #333;
}

.pm-contact-info p {
  margin: 2px 0;
  color: #555;
}

/* Loading */
.pm-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-size: 18px;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .pm-auth-card {
    padding: 24px;
  }

  .pm-form-row {
    flex-direction: column;
    gap: 0;
  }

  .pm-dashboard-header {
    padding: 16px 20px;
    flex-direction: column;
    gap: 12px;
  }

  .pm-dashboard-content {
    padding: 20px;
  }

  .pm-profile-info strong {
    display: block;
    width: auto;
    margin-bottom: 4px;
  }

  .pm-actions {
    flex-direction: column;
  }

  .pm-actions .pm-btn {
    width: 100%;
  }
}


/*# sourceMappingURL=app.css.map*/