/**
 * ══════════════════════════════════════════════════════════════════════════════
 * GÖKÇEOS PROTOTYPE UI V2 — RESORT & HOTEL DEPARTMENTS CSS
 * SPA & Wellness, Restaurant POS, Animation & Events, Pool & Beach, Tech Facility
 * ══════════════════════════════════════════════════════════════════════════════
 */

.resort-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background: radial-gradient(circle at 85% 15%, rgba(14, 165, 233, 0.07) 0%, transparent 45%),
              radial-gradient(circle at 15% 85%, rgba(168, 85, 247, 0.06) 0%, transparent 45%),
              #090d16;
  color: #f8fafc;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow: hidden;
}

.resort-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.resort-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.resort-logo-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.15);
}

.resort-title-area h2 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.resort-title-area p {
  font-size: 0.75rem;
  color: #94a3b8;
  margin: 0.15rem 0 0 0;
}

.resort-tabs {
  display: flex;
  background: rgba(2, 6, 23, 0.6);
  padding: 0.25rem;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  gap: 0.25rem;
}

.resort-tab-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.18s ease;
}

.resort-tab-btn:hover {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.05);
}

.resort-tab-btn.active {
  color: #ffffff;
  background: var(--tab-active-bg, linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%));
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.resort-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Grid Cards & Lists */
.resort-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.resort-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  transition: all 0.15s;
}

.resort-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* Status Badges */
.resort-badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.resort-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.resort-table th {
  background: rgba(2, 6, 23, 0.7);
  color: #94a3b8;
  font-weight: 700;
  text-align: left;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.resort-table td {
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
}

.resort-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
