/* 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;
    width: 33%;
}

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: left;
}

.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;
text-align: left;
}

/* 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;
        /*width: 328px;*/
    }
}

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

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

input::placeholder {
  opacity: 0.5;
}

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

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

.owner-name {
font-weight: 700;
text-align: center;
color: #003359;
}

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

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

.OwnerDetails {
    margin-bottom: 25px;
}

.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;
    }
}

ul.detailsBullets {
  list-style-type: none;
  padding-left: 10px;
}

.form-disclaimer {
font-size: 12px;
font-style: italic;
}

.form-fields {
margin-bottom: 15px;
}

label.opt-in-label {
    font-weight: 300;
    color: #595959;
    font-size: 14px;
}

h3.pre-header {
    text-transform: uppercase;
    color: #cf4a29;
    padding-bottom: 0px;
    margin-bottom: 0px;
    line-height: 0;
}