:root {
  --font-family-sans-deprecated: "Roboto", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-serif: "Georgia", "Cambria", "Times New Roman", Times, serif;
  --font-family-mono: "Source Code Pro", "Menlo", "Monaco", "Consolas",
    "Courier New", monospace;
  --webkit-font-smoothing: antialiased;
  --font-family-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  --google-blue: #1a73e8;
  --google-grey-text: #5f6368;
  --google-border-color: #fff;
  --google-bg-grey: #fff;
  --google-hover-grey: #f1f3f4;
  --google-active-blue: #e8f0fe;
  --google-hover-darkgrey: #5f6368;
  --button-border-radius: 25px;
}

body {
  font-family: var(--font-family-sans);
  margin: 0;
  background-color: var(--google-bg-grey);
  color: #202124;
  overflow-x: hidden;
  line-height: 1.6;
}

.center {
  text-align: center;
  margin: 0 auto;
}

a {
  color: #007bff;
  /* Blue color */
  text-decoration: none;
  /* Remove underline */
}

a:hover {
  color: green;
}

a:active {
  color: green;
}

a:focus {
  outline: 1px solid white;
  /* Add an outline for accessibility */
}

/* Styles for the AI Agents sub-navigation */
.sub-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.sub-nav-links a {
  text-decoration: none;
  color: var(--google-grey-text);
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: 500;
}

.sub-nav-links a:hover {
  background-color: var(--google-hover-grey);
}

.sub-nav-links a.active {
  background-color: var(--google-active-blue);
  color: var(--google-blue);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  background-color: #f8f9fa;
}

th,
td {
  border: 1px solid #dee2e6;
  padding: 8px;
  text-align: left;
}

th {
  background-color: #e9ecef;
  font-weight: 500;
}

/* Add this to one of your main CSS files (e.g., base.css) */
.calendly-button-container {
  position: fixed;
  /* Fix the position relative to the viewport */
  bottom: 46px;
  /* Position it 50px from the bottom, just above the footer */
  right: 2rem;
  /* Position it on the right side */
  z-index: 999;
  /* Ensure it's above content but below modals */
}

.calendly-schedule-button {
  display: inline-flex;
  /* Use flexbox to center the icon */
  align-items: center;
  justify-content: center;
  width: 56px;
  /* Standard Floating Action Button size */
  height: 56px;
  padding: 0;
  /* Remove padding to fit the icon */
  background-color: #1a73e8;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50%;
  /* Make it a circle */
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* Add a subtle shadow */
}

.calendly-schedule-button:hover {
  background-color: #1a73e8;
  color: #ffffff;
}

.tag {
  border-radius: 16px;
  display: inline-block;
  margin: 2px;
  font-size: 12px;
  font-weight: 500;
  padding: .25rem .75rem;
  transition: background-color 0.3s ease;
}

.role-tag {
  background-color: #f1f3f4;
  color: #3c4043;
}

.role-tag-green {
  background-color: #e6f4ea;
  color: #1e8e3e;
}

.role-tag-blue {
  background-color: #e8f0fe;
  color: #1967d2;
}

.role-tag-red {
  background-color: #fce8e6;
  color: #d93025;
}

.role-tag-yellow {
  background-color: #fef7e0;
  color: #ea8600;
}

.role-tag-purple {
  background-color: #f3e8fd;
  color: #9334e6;
}

.role-tag-orange {
  background-color: #feefe3;
  color: #e8710a;
}