/* Reset some browser defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: #222222;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

/* Container */
#container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
}

/* Sidebar */
#leftnav {
  flex: 0 0 200px;
  background-color: #f7f7f7;
  padding: 15px;
  border-right: 1px solid #ddd;
}

#leftnav a {
  display: block;
  padding: 8px 0;
  color: #0044cc;
  text-decoration: none;
  font-weight: 500;
}

#leftnav a:hover {
  text-decoration: underline;
  color: #002a80;
}

/* Content */
#content {
  flex: 1;
  padding: 20px 30px;
  background-color: #ffffff;
}

/* Headings */
h3 {
  margin-bottom: 15px;
  border-bottom: 2px solid #0044cc;
  padding-bottom: 5px;
  color: #0044cc;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

td {
  padding: 8px;
  vertical-align: top;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

td:first-child {
  width: 40px;
  font-weight: bold;
  text-align: right;
  color: #555;
}
@media (min-width: 768px) {
    .book-promo-inner img {
        width: 500px !important;
    }
}

@media (max-width: 767px) {
    .book-promo-inner img {
        width: 100% !important;  /* scales on small screens */
    }
}
.book-promo-inner img {
    width: 400px !important;   /* increase as needed */
    max-width: 100% !important;
    height: auto !important;
    flex-shrink: 0 !important;
    display: block;  /* ensures no extra spacing issues */
}
    /* Speaking Invite */
    .speaking-invite {
      border: 2px solid #ddd;
      border-radius: 12px;
      padding: 20px;
      margin: 40px 0;
      background-color: #f9f9ff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .speaking-invite h2 {
      color: #4B0082;
      margin-top: 0;
    }
    .speaking-invite form {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 500px;
    }
    .speaking-invite input,
    .speaking-invite textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 0.95em;
    }
    .speaking-invite button {
      background: #4B0082;
      color: #fff;
      padding: 12px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1em;
    }
    .speaking-invite button:hover {
      background: #360061;
    }
    aside {
  flex: 0 0 200px;
  padding: 20px;
  background: #f4f4f4 !important;
}
aside nav a {
  white-space: nowrap;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
}

