/* CommunityOS - Shared Styles */

/* Page Layout */
.page-wrapper {
  opacity: 0;
  animation: fadeIn 0.25s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 100%);
  color: white;
  text-align: center;
}

.page-header .text-style-tagline {
  color: #F97316;
}

.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 1rem 0;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb a {
  color: #F97316;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #999;
}

/* Search Bar */
.search-container {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.search-bar {
  display: flex;
  gap: 0.5rem;
  background: white;
  border-radius: 50px;
  padding: 0.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.search-bar input {
  flex: 1;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border-radius: 50px;
  outline: none;
}

.search-bar button {
  background: #F97316;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-bar button:hover {
  background: #D97706;
}

/* Filter Pills */
.filter-section {
  margin-bottom: 2rem;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.filter-pill {
  padding: 0.75rem 1.5rem;
  background: #f0f0f0;
  border: 2px solid transparent;
  border-radius: 50px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.filter-pill:hover,
.filter-pill.active {
  background: #F97316;
  color: white;
}

.filter-pill.active {
  border-color: #D97706;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Resource Card */
.resource-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.resource-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.resource-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #F97316 0%, #D97706 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
}

.resource-card-category {
  font-size: 0.75rem;
  background: #f0f0f0;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  color: #666;
}

.resource-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.resource-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.resource-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #888;
}

.resource-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Event Card */
.event-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.event-card-date {
  background: #F97316;
  color: white;
  padding: 1rem;
  text-align: center;
}

.event-card-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.event-card-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-card-content {
  padding: 1.5rem;
}

.event-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.event-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.event-card-info {
  font-size: 0.85rem;
  color: #888;
}

.event-card-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

/* Form Styles */
.form-section {
  padding: 4rem 0;
  background: #FFF7ED;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #F97316;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  background: #F97316;
  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.form-submit:hover {
  background: #D97706;
  transform: scale(1.02);
}

/* Info Cards */
.info-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-card h3 i {
  color: #F97316;
}

.info-card p,
.info-card li {
  color: #666;
  line-height: 1.7;
}

.info-card ul {
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.info-card li {
  margin-bottom: 0.5rem;
}

/* Emergency Styles */
.emergency-banner {
  background: #dc3545;
  color: white;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
}

.emergency-banner a {
  color: white;
  text-decoration: underline;
}

.quick-exit {
  position: fixed;
  top: 100px;
  right: 20px;
  background: #dc3545;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(220,53,69,0.4);
  transition: all 0.3s ease;
}

.quick-exit:hover {
  background: #c82333;
  transform: scale(1.05);
}

.crisis-card {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.crisis-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.crisis-card .phone {
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0;
}

.crisis-card p {
  opacity: 0.9;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F97316 0%, #D97706 100%);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  font-weight: 700;
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.team-card .role {
  color: #F97316;
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #FFF7ED;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  color: #666;
  line-height: 1.7;
}

/* News/Blog Cards */
.news-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card-image {
  height: 200px;
  background: linear-gradient(135deg, #F97316 0%, #D97706 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.news-card-content {
  padding: 1.5rem;
}

.news-card-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.75rem;
}

.news-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.news-card p {
  color: #666;
  line-height: 1.6;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination a,
.pagination span {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background: #f0f0f0;
}

.pagination .active {
  background: #F97316;
  color: white;
}

/* Content Section */
.content-section {
  padding: 4rem 0;
}

.content-section:nth-child(even) {
  background: #FFF7ED;
}

.content-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.content-section p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* CTA Buttons */
.btn-primary {
  display: inline-block;
  background: #F97316;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #D97706;
  transform: scale(1.05);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #F97316;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #F97316;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #F97316;
  color: white;
}

/* Legal Page Styles */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.legal-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.legal-content li {
  color: #666;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* Calendar Styles */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.view-toggle {
  display: flex;
  gap: 0.5rem;
}

.view-toggle button {
  padding: 0.75rem 1.5rem;
  border: 2px solid #e0e0e0;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-toggle button.active {
  background: #F97316;
  color: white;
  border-color: #F97316;
}

/* Simple Footer */
.simple-footer {
  background: linear-gradient(180deg, #0a0f1e 0%, #0F172A 50%, #0a0f1e 100%);
  color: white;
  padding: 5rem 0 3rem;
  margin-top: 5rem;
  border-top: 4px solid #F97316;
  position: relative;
  overflow: hidden;
}

.simple-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 93, 59, 0.5), transparent);
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 5rem;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(232, 93, 59, 0.3);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-column:first-child {
  flex: 1 1 auto;
}

.footer-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  margin: 0;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
}

.footer-subtitle {
  font-size: 0.85rem;
  font-weight: 800;
  color: #F97316;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 1rem 0;
  display: block;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #F97316;
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #F97316;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  color: #F97316;
  padding-left: 12px;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.8px;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .page-header {
    padding: 6rem 0 3rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .quick-exit {
    top: auto;
    bottom: 20px;
    right: 20px;
  }
}

/* Partner Portal Navigation Highlight */
.navbar-highlight {
  background: linear-gradient(135deg, #F97316 0%, #D97706 100%) !important;
  color: white !important;
  padding: 0.5rem 1rem !important;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar-highlight:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(232, 93, 59, 0.3);
}

/* Partner Portal Styles */

/* Login Container */
.login-container {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  max-width: 450px;
  margin: 2rem auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(232, 93, 59, 0.1);
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-header p {
  font-size: 1.2rem;
  color: #333;
  margin: 1rem 0 0 0;
  font-weight: 500;
}

/* Form Styling */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: #F97316;
  box-shadow: 0 0 0 3px rgba(232, 93, 59, 0.1);
}

/* Login Button */
.login-btn {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, #F97316 0%, #D97706 100%);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 93, 59, 0.3);
}

.login-btn:active {
  transform: translateY(0);
}

/* Error Message */
.error-message {
  background: #fee;
  color: #c33;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  display: none;
  border-left: 4px solid #c33;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.error-message i {
  font-size: 1.2rem;
}

/* Demo Credentials */
.demo-credentials {
  background: #fafafa;
  border: 1px dashed #ddd;
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1.5rem;
  text-align: center;
}

.demo-credentials p {
  margin: 0 0 0.5rem 0;
  color: #666;
  font-weight: 600;
  font-size: 0.9rem;
}

.demo-credentials strong {
  display: block;
  color: #333;
  font-family: monospace;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* Back Link */
.back-link {
  text-align: center;
  margin-top: 1.5rem;
}

.back-link a {
  color: #F97316;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.back-link a:hover {
  transform: translateX(-4px);
}

/* Demo Banner */
.demo-banner {
  background: #fffbeb;
  border: 2px solid #fcd34d;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.demo-banner i {
  font-size: 1.5rem;
  color: #d97706;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.demo-banner-content h4 {
  margin: 0 0 0.5rem 0;
  color: #92400e;
  font-size: 1rem;
  font-weight: 600;
}

.demo-banner-content p {
  margin: 0;
  color: #b45309;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Dashboard Styles */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0 0 1.5rem 0;
  border-bottom: 2px solid #eee;
}

.dashboard-header h1 {
  margin: 0 0 0.5rem 0;
  color: #0F172A;
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.dashboard-header i {
  font-size: 2.2rem;
}

.welcome-text {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

.logout-btn {
  padding: 0.7rem 1.5rem;
  background: #f3f4f6;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: #666;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.logout-btn:hover {
  background: #e5e7eb;
  color: #333;
}

/* Stat Grid */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #eee;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #F97316;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #F97316;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Dashboard Grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.dashboard-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.dashboard-card h3 {
  margin: 0 0 1.5rem 0;
  color: #0F172A;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.dashboard-card h3 i {
  color: #F97316;
  font-size: 1.4rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  color: #666;
  font-weight: 600;
}

.info-value {
  color: #333;
  text-align: right;
}

.disabled-notice {
  background: #f3f4f6;
  border-left: 3px solid #9ca3af;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-tag {
  display: inline-block;
  background: #f0f9ff;
  color: #0369a1;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid #bae6fd;
}

.event-item {
  background: #f9fafb;
  padding: 1.2rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border: 1px solid #eee;
}

.event-info h4 {
  margin: 0 0 0.5rem 0;
  color: #0F172A;
  font-size: 1rem;
}

.event-info p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-status {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.event-status.published {
  background: #dcfce7;
  color: #166534;
}

.action-btn {
  padding: 0.6rem 1.2rem;
  background: #F97316;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn:hover:not(:disabled) {
  background: #D97706;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .login-container {
    padding: 2rem 1.5rem;
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  
  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
