/* Milligram overrides */
:root {
    /* The following are official CakePHP colors */
    --color-cakephp-red: #d33c43;
    --color-cakephp-gray: #404041;
    --color-cakephp-blue: #2f85ae;
    --color-cakephp-lightblue: #34bdd7;

    /* These are additional colors */
    --color-lightgray: #606c76;
    --color-white: #fff;

    --color-main-bg: #f5f7fa;
    --color-links: var(--color-cakephp-blue);
    --color-links-active: #2a6496;
    --color-headings: #363637;

    --color-message-success-bg: #e3fcec;
    --color-message-success-text: #1f9d55;
    --color-message-success-border: #51d88a;

    --color-message-warning-bg: #fffabc;
    --color-message-warning-text: #8d7b00;
    --color-message-warning-border: #d3b800;

    --color-message-error-bg: #fcebea;
    --color-message-error-text: #cc1f1a;
    --color-message-error-border: #ef5753;

    --color-message-info-bg: #eff8ff;
    --color-message-info-text: #2779bd;
    --color-message-info-border: #6cb2eb;
}

.button, button, input[type='button'], input[type='reset'], input[type='submit'] {
    background-color: var(--color-cakephp-red);
    border-color: var(--color-cakephp-red);
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    background: var(--color-main-bg);
}

.top-nav-links,
.side-nav,
h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    color: var(--color-headings);
}

a {
    color: var(--color-links);
    transition: color 0.2s linear;
}

a:hover,
a:focus,
a:active {
    color: var(--color-links-active);
    transition: color 0.2s ease-out;
}

.side-nav a,
.top-nav-links a,
th a,
.actions a {
    color: var(--color-lightgray);
}

.side-nav a:hover,
.side-nav a:focus,
.actions a:hover,
.actions a:focus {
    color: var(--color-links-active);
}

/* Utility */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Main */
.content {
    padding: 2rem;
    background: var(--color-white);
    border-radius: 0.4rem;
    /* Thanks Stripe */
    box-shadow: 0 7px 14px 0 rgba(60, 66, 87, 0.1),
        0 3px 6px 0 rgba(0, 0, 0, 0.07);
}
.content form {
    margin: 0;
}
.actions a {
    font-weight: bold;
    padding: 0 0.4rem;
}
.actions a:first-child {
    padding-left: 0;
}
th {
    white-space: nowrap;
}
/* Nav bar */
nav.top-nav {
    border-bottom: 1px solid #e5e7eb; /* light gray line */
    display: flex;
    justify-content: space-between; /* pushes title left, links right */
    align-items: center;
    padding: 0.5rem 1rem;

}

.top-nav-title a {
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    color: #000;
    margin-right: auto; 
}


.top-nav .top-nav-links .user-email {
  font-weight: 700 !important;
  color: #2d3748;
  margin-right: 1rem;
  align-self: center;
}

.top-nav-links {
    display: flex;
    gap: 1rem; /* spacing between links */
}

.top-nav-links a {
    text-decoration: none;
    color: #0077cc;
}


/* View action */
.view.content .text {
    margin-top: 1.2rem;
}
.related {
    margin-top: 2rem;
}

/* Flash messages */
.message {
    padding: .5rem 1rem;
    background: var(--color-message-info-bg);
    color: var(--color-message-info-text);
    border-color: var(--color-message-info-border);
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
    margin-bottom: 1rem;
    cursor: pointer;
}
.message.hidden {
    display: none;
}
.message.success {
    background: var(--color-message-success-bg);
    color: var(--color-message-success-text);
    border-color: var(--color-message-success-border);
}
.message.warning {
    background: var(--color-message-warning-bg);
    color: var(--color-message-warning-text);
    border-color: var(--color-message-warning-border);
}
.message.error {
    background: var(--color-message-error-bg);
    color: var(--color-message-error-text);
    border-color: var(--color-message-error-border);
}

/* Forms */
.input {
    margin-bottom: 1.5rem;
}
.input input,
.input select,
.input textarea {
    margin-bottom: 0;
}
.input label:has(input[type='checkbox']),
.input label:has(input[type='radio']) {
    display: flex;
    align-items: center;
}
.input label:has(~ label),
.input label:has(input[type='radio']) {
    margin-bottom: 0;
}
.input label > input[type='checkbox'],
.input label > input[type='radio'] {
    margin-right: 1.0rem;
}
input[type='color'] {
    max-width: 4rem;
    padding: 0.3rem .5rem 0.3rem;
}
.error-message {
    color: var(--color-message-error-text);
}

/* Paginator */
.paginator {
    text-align: right;
}
.paginator p {
    margin-bottom: 0;
}
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
}
.pagination li {
    display: inline-block;
    margin: 0.25em;
    text-align: center;
}
.pagination a {
    color: var(--color-cakephp-blue);
    display: inline-block;
    font-size: 1.25rem;
    line-height: 3rem;
    min-width: 3rem;
    padding: 0;
    position: relative;
    text-decoration: none;
    transition: background .3s,color .3s;
}
.pagination li.active a,
.pagination a:hover {
    text-decoration: underline;
}
.pagination .disabled a {
    cursor: not-allowed;
    color: var(--color-lightgray);
    text-decoration: none;
}
.first a,
.prev a,
.next a,
.last a {
    padding: 0 .75rem;
}
.disabled a:hover {
    background: initial;
    color: initial;
}
.asc:after {
    content: " \2193";
}
.desc:after {
    content: " \2191";
}

/* Error in non debug mode */
.error-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
}

@media screen and (max-width: 640px) {
    /* Fix milligram not having a responsive column system */
    .row .column[class*='column-'] {
        flex: 0 0 100%;
        max-width: 100%
    }
    .top-nav {
        margin: 0 auto;
    }
    .side-nav {
        margin-bottom: 1rem;
    }
    .heading {
        margin-bottom: 1rem;
    }
    .side-nav-item {
        display: inline;
        margin: 0 1.5rem 0 0;
    }
    .asc:after {
        content: " \2192";
    }
    .desc:after {
        content: " \2190";
    }
}

/* Layout spacing */
.hero { padding: 64px 0 24px; background: #f7f8fa; }
.hero__content { max-width: 960px; margin: 0 auto; padding: 0 20px; text-align: left; }
.hero__title { font-size: clamp(28px, 6vw, 56px); line-height: 1.05; margin: 0 0 12px; }
.hero__subtitle { font-size: 18px; color: #5b6770; margin: 0 0 24px; max-width: 720px; }

.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.hero__badges { display: flex; gap: 12px; list-style: none; padding: 0; margin: 8px 0 0; color: #6b7280; }
.hero__badges li { background: #eef2f7; padding: 6px 10px; border-radius: 9999px; font-size: 12px; }

.features { padding: 28px 0 12px; }
.features__grid { max-width: 960px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px;
}
.card { background: #fff; border-radius: 14px; box-shadow: 0 2px 10px rgba(0,0,0,.04);
  padding: 18px 16px; border: 1px solid #e9eef3;
}
.card__title { margin: 0 0 6px; font-size: 18px; }
.card__text { margin: 0; color: #5b6770; }

.how { max-width: 960px; margin: 8px auto 40px; padding: 0 20px; }
.how__title { font-size: 24px; margin: 24px 0 8px; }
.how__steps { margin: 0 0 16px 16px; color: #4a5568; }
.how__steps li { margin: 6px 0; }
.how__cta { margin-top: 12px; }

/* Buttons (reusing your red style) */
.btn {
  display: inline-block;
  border-radius: 8px;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  transition: all 0.15s ease-in-out;
}

.btn-primary {
  background: #cc4b4c;
  color: #fff;
  border: 1px solid #cc4b4c;
}
.btn-primary:hover {
  filter: brightness(0.95);
}

.btn-ghost {
  background: transparent;
  color: #4a5568;
  border: 1px solid #d1d9e0;
}
.btn-ghost:hover {
  border-color: #b9c4cf;
  color: #222;
}


/* Footer */
.site-footer { border-top: 1px solid #e9eef3; background: #fff; }
.site-footer__inner { max-width: 960px; margin: 0 auto; padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.site-footer__links a { margin-left: 12px; color: #4a5568; text-decoration: none; }
.site-footer__links a:hover { color: #cc4b4c; }

/* Small screens niceties */
@media (max-width: 640px) {
  .hero__content { text-align: left; }
  .site-footer__inner { flex-direction: column; align-items: flex-start; }
}


