/* Button Styles */
button {
    background-color: #cf4a29;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    display: block;
    margin: 0 auto;
}

button:hover {
    background-color: rgb(186, 58, 26);
}

button:focus {
    outline: none;
    box-shadow: 0 0 4px rgba(26, 62, 92, 0.5);
}

/* Container & Layout */


.form-title {
    text-align: center;
}

.form-description {
    margin: 15px 0;
}

/* Cards */
.card {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
margin-left: 25px;
}

.card h3 {
    margin: 0;
    font-size: 18px;
    color: #1e9c8a;
}

.session-name {
    font-weight: 700;
    color: #003359;
    display: inline;
}

.session-speakers, .session-description, .session-capacity {
    color: #333;
    font-size: 14px;
    line-height: 1.4em;
    margin: 0;
    padding: 4px 0px 4px 26px;
}

.card:hover {
    background-color: #e9e9e9;
}

.card.disabled {
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    color: #777;
    pointer-events: none;
    opacity: 0.6;
}

/* Error Styles */
.error-message {
    background-color: #ffdddd;
    border: 1px solid #ff0000;
    color: #ff0000;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.error-message h3 {
    margin: 0;
    font-size: 18px;
}

/* Required Fields */
.required::after {
    content: " *";
    color: red;
}


/* Thank You Message */
.thank-you-message {
    font-family: "museo-sans", Arial, sans-serif;
}

.thank-you-message h2 {
    margin-top: 15px;
}

/* Links */
a {
    color: #cf4a29;
    font-weight: 300;
}

/* Banner Image */
.banner-image {
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

/* Loading Overlay */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none; /* Start hidden */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#loading-overlay .spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loading-overlay .loading-message {
    color: #fff;
    font-size: 18px;
    margin-top: 10px;
    text-align: center;
    font-family: "museo-sans", Arial, sans-serif;
}

/* Media Queries */
@media (max-width: 768px) { 
    .container {

    }
}

@media (max-width: 480px) { 
    .container {

        margin: 0 auto;
    }
}

/* Confirmed Sessions */
.confirmed-sessions ul li {
    font-weight: bold;
    color: #003359;
}

.slot-header {
margin-top: 10px;
}

input[name="Company"] {
    margin-bottom: 25px;
}

input::placeholder {
  opacity: 0.5;
}

.form-group label {
    color: #003359;
    font-weight: 700;
}

.headshot {
width: 100%;
margin: 0 auto;
max-width: 160px;
display: block;
}

.contact-person-headshot {
width: 100%;
margin: 0 auto;
max-width: 120px;
display: block;
}

.owner-name, .contact-person-name {
font-weight: 700;
text-align: center;
color: #003359;
font-size: 18px;
}

img.headshot {
    /* border: 3px solid #003359; */
    border-radius: 50%;
    /* outline: 4px solid #003339; */
    outline-offset: -5px;
margin: 10px auto;
}

.owner-title, .owner-team, .contact-person-title, .contact-person-team {
text-align: center;
font-style: italic;
}

.OwnerDetails {
    margin: 30px 0px 40px;
}

.header-logo-container {
    text-align: center;
    margin: auto;
    padding: 20px 10px;
}

.hidden { display: none; }

.button-container {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
  }

  .button-container button {
    flex: 1; /* Makes buttons equal width */
    min-width: 150px; /* Ensures they don’t shrink too much */
    background-color: #ffffff;
    color: #003359;
    border: 1px solid #003359;
  }

/* Change background color when button is active (clicked) */
.button-container button:active {
    background-color: #003359; /* Darker shade of the original color */
    color: #ffffff;
}

  @media (max-width: 600px) {
    .button-container {
      flex-direction: column;
      align-items: stretch;
    }

    .button-container button {
      width: 100%;
    }
  }

button.active {
    background-color: #003359; /* Change this to your preferred active color */
    color: white;
}

/* Desktop and larger devices */
@media (min-width: 768px) {  /* You can adjust 768px to whatever your desired "desktop" breakpoint is */
    .container {
        min-width: 450px;
    }
}


.container {
  flex-basis: 60%;
  max-width: none;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin: 0px auto;
}


.sidebar-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-family: sans-serif;
}

.sidebar-header {
  background-color: #d63a1e;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 14px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.sidebar-header .icon {
  margin-right: 8px;
}

.contact-person {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.contact-person img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
}

.contact-person a {
  color: #0073e6;
  text-decoration: none;
}

.contact-person a:hover {
  text-decoration: underline;
}

.sidebar-contact-icon {
    color: rgb(255, 154, 63);
    padding-right: 5px;
}

.sidebar-content {
    padding: 5px 25px;
}

.contact-person-details
{
font-size: 14px;
}

.layout-3col {
  display: flex;
  width: 100%;
  box-sizing: border-box;
max-width: 1300px;
gap: 40px;
    margin: 50px auto;
flex: 1;
}

.col {
  box-sizing: border-box;
}

.col-left,
.col-right {
  flex: 1; /* 25% each */
  max-width: 30%;
}

.col-center {
  flex: 2; /* 50% */
  max-width: 40%;
}

@media (max-width: 768px) {
  .layout-3col {
    flex-direction: column;
    margin: 10px auto 20px;
gap: 20px;
  }

  .col-left {
    display: none;
  }

  .col-right {
    max-width: 100%;
  }

  .col-center {
    max-width: 100%;
  }

.col {
  padding: 0 10px; /* optional, for spacing */
}
}

.owner-LinkedIn_URL a {
font-weight: 700;
}

.owner-LinkedIn_URL {
    text-align: center;
}

.contact-person-LinkedIn_URL a {
font-weight: 700;
}

.contact-person-LinkedIn_URL {
    text-align: center;
}

div.owner-LinkedIn_URL svg {
  height: 1.5rem;
text-align: center;
display: none;
}

.teamDetails img {
width: 120px;
height: 120px;
margin-bottom: 10px;
}

.teamDetails {
display: flex;
justify-content: space-evenly;
}

.team-contact-person {
display: block;
}