/* Full Page Setup */
    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      background-color: #f4f6f8;
      font-family: 'Segoe UI', Tahoma, sans-serif;
    }

    .page-wrapper {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    #navbar, #footer {
      flex-shrink: 0;
    }

    main.admin-dashboard {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem 1rem;
      max-width: 960px;
      margin: 0 auto;
      text-align: center;
    }

    .dashboard-header {
      margin-bottom: 2rem;
    }

    .dashboard-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: #2c3e50;
    }

    .dashboard-subtitle {
      font-size: 1.1rem;
      color: #607d8b;
      margin-top: 0;
    }

    .dashboard-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
      width: 100%;
      justify-content: center;
    }

    .dashboard-card {
      background-color: #fff;
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      transition: box-shadow 0.3s ease;
    }

    .dashboard-card h2 {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
    }

    .dashboard-card p {
      font-size: 0.95rem;
      color: #546e7a;
      margin-bottom: 1rem;
    }

    .dashboard-link {
      display: inline-block;
      background-color: #1e88e5;
      color: #fff;
      padding: 0.6rem 1.2rem;
      border-radius: 8px;
      text-decoration: none;
      font-size: 0.95rem;
      transition: background-color 0.3s ease;
    }

    .dashboard-link:hover {
      background-color: #1565c0;
    }

    @media screen and (max-width: 600px) {
      .dashboard-title {
        font-size: 2rem;
      }

      .dashboard-subtitle {
        font-size: 1rem;
      }
    }