/*
Theme Name: ColoMap Child
Template: twentytwentyfive
Version: 1.0
*/
:root {
  --cm-wrap: 1100px;
}
.wrap {
  max-width: var(--cm-wrap);
  margin: 0 auto;
  padding: 0 20px;
}
header.cm-header {
  border-bottom: 1px solid #eee;
  margin-bottom: 12px
}
header.cm-header .wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 64px
}
.cm-brand a {
  font-weight: 700;
  text-decoration: none;
  color: #111;
  font-size: 1.1rem
}
.cm-nav {
  margin-left: auto
}
.cm-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px
}
.cm-nav a {
  text-decoration: none;
  color: #111;
  padding: .5rem .7rem;
  border-radius: 8px
}
.cm-nav a:hover {
  background: #f4f4f4
}
.cm-hero {
  padding: 48px 0
}
.cm-hero h1 {
  margin: 0 0 8px
}
.cm-cta .btn {
  display: inline-block;
  padding: .65rem 1rem;
  border-radius: 10px;
  background: #111;
  color: #fff;
  text-decoration: none;
  margin-right: .5rem
}
.cm-cta .btn.outline {
  background: #fff;
  color: #111;
  border: 1px solid #111
}
.cm-map-full {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw)
}
.cm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(230px,1fr));
  gap: 12px
}
.cm-card a {
  display: block;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: .8rem 1rem;
  text-decoration: none;
  color: #111
}
footer.cm-footer {
  border-top: 1px solid #eee;
  margin-top: 24px
}
footer.cm-footer .wrap {
  padding: 18px 0;
  font-size: .92rem;
  color: #666
}
.cm-main {
  padding-top: 0;
}
.cm-offers-controls input,
.cm-offers-controls select,
.cm-offers-controls button {
  padding: .5rem .6rem;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
}
.cm-offers-controls button {
  cursor: pointer;
}
.cm-offers-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.cm-offers-table thead th {
  text-align: left;
  border-bottom: 2px solid #e5e5e5;
  padding: 10px 12px;
}
.cm-offers-table tbody td {
  border-bottom: 1px solid #f1f1f1;
  padding: 12px;
  vertical-align: top;
}
.cm-offers-table .num {
  text-align: right;
  white-space: nowrap;
}
.cm-offers-table .pkg {
  min-width: 220px;
}
.cm-offers-table tbody tr:nth-child(odd) {
  background: #fafafa;
}
.cm-offers-controls select,
.cm-offers-controls button {
  padding: .5rem .6rem;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
}

/* Contain map shortcodes inside content width */
.cm-map-full {
  max-width: 1200px;  /* adjust to your desired content width */
  margin: 0 auto;     /* center horizontally */
  overflow: hidden;   /* prevent scrollbars if Google maps overflows */
  border-radius: 8px; /* optional: rounded corners */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* optional: subtle shadow */
}
.cm-map-full iframe {
  width: 100% !important; /* force iframe to fit container */
  display: block;
}

/* === FIX: widen and no-wrap the "Size" column on Facility offers table === */
.cm-offers-table th:nth-child(2),
.cm-offers-table td:nth-child(2) {
  white-space: nowrap;
  width: 24%;
  min-width: 220px;
}
