/* Admin Layout Modernization */
.admin-layout {
  min-height: 100vh;
  background: #f7f8fa;
  font-family: 'Inter', Arial, sans-serif;
}
.admin-header-bar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 64px;
  box-shadow: 0 2px 8px rgba(44,62,80,0.04);
  position: sticky;
  top: 0;
  z-index: 10;
}
.admin-header-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.admin-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.admin-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
  text-decoration: none;
  letter-spacing: -1px;
}
.admin-nav-link {
  color: #3498db;
  font-weight: 500;
  text-decoration: none;
  font-size: 1.1rem;
  margin-left: 1rem;
  transition: color 0.2s;
}
.admin-nav-link:hover {
  color: #217dbb;
}
.admin-main-content {
  max-width: 1200px;
  margin: 2.5rem auto 0 auto;
  padding: 2rem 2.5rem 3rem 2.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(44,62,80,0.07);
  min-height: 80vh;
}
.button.primary {
  background: #ffb700;
  color: #222;
  font-weight: 600;
  border: none;
  box-shadow: 0 2px 8px rgba(255,183,0,0.08);
  transition: background 0.2s;
}
.button.primary:hover {
  background: #ffd966;
}
.button.danger {
  background: #e74c3c;
  color: #fff;
}
.button {
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.sign-out-button {
  background: #f3f3f3;
  color: #2c3e50;
  border: 1px solid #e5e7eb;
  font-weight: 500;
}
.sign-out-button:hover {
  background: #e5e7eb;
}
/* Card grid and card improvements */
.golf-courses-section {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.golf-courses-list {
  flex: 2;
}
.golf-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  gap: 2rem;
}
.golf-course-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44,62,80,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transition: box-shadow 0.2s;
  border: 1px solid #e5e7eb;
}
.golf-course-card:hover {
  box-shadow: 0 6px 24px rgba(44,62,80,0.16);
  border-color: #ffd966;
}
.golf-course-image-placeholder {
  background: #f3f3f3;
  min-width: 120px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #bbb;
  border-radius: 12px 0 0 12px;
  margin: 1rem 0 1rem 1rem;
}
.golf-course-card-content {
  padding: 1.2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.golf-course-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.3rem 0;
  color: #2c3e50;
}
.golf-course-location {
  color: #3498db;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.golf-course-description {
  color: #555;
  font-size: 0.98rem;
  margin-bottom: 1rem;
  min-height: 2.5em;
}
.golf-course-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}
.golf-courses-map-placeholder {
  flex: 1;
  min-width: 320px;
  background: #f3f4f6;
  border-radius: 14px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 1.2rem;
  border: 1px solid #e5e7eb;
}
/* Empty state */
.golf-courses-empty {
  text-align: center;
  color: #888;
  font-size: 1.2rem;
  margin: 3rem 0;
}
.golf-courses-empty .button.primary {
  margin-top: 1.5rem;
}

/* Admin Layout */
.admin-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.admin-nav {
  background: #2c3e50;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-nav-brand a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}

.admin-nav-menu {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.admin-nav-menu a {
  color: white;
  text-decoration: none;
}

/* Admin Header */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

/* Forms */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-control {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

/* Notices and Alerts */
.notice, .alert {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.notice {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Error Messages */
.error-messages {
  background: #f8d7da;
  color: #721c24;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  border: 1px solid #f5c6cb;
}

.error-messages h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.error-messages ul {
  margin: 0;
  padding-left: 1.5rem;
}

/* Admin Shell Layout */
.admin-shell {
  display: flex;
  min-height: 100vh;
  background: #f7f8fa;
}
.admin-sidebar {
  width: 240px;
  background: #fff;
  border-right: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-height: 100vh;
  box-shadow: 2px 0 8px rgba(44,62,80,0.04);
}
.admin-sidebar-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2.5rem;
  letter-spacing: -1px;
}
.admin-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.admin-nav-link {
  color: #3498db;
  font-weight: 500;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.admin-nav-link:hover {
  color: #217dbb;
}
.admin-sidebar-footer {
  margin-top: auto;
  padding-top: 2rem;
}
.admin-main-content {
  flex: 1;
  padding: 3rem 4vw 3rem 4vw;
  max-width: 100vw;
  min-width: 0;
  background: #f7f8fa;
}
@media (max-width: 900px) {
  .admin-sidebar {
    width: 100px;
    padding: 1rem 0.5rem;
  }
  .admin-main-content {
    padding: 2rem 1vw;
  }
} 