 /* General Body Styling */
body {
    font-family: "Segoe UI", Roboto, sans-serif;
    background-color: #f9fbfd;
    color: #333;

}

/* Header */
#header {
    background: linear-gradient(to right, #005ea8, #007bce);
    color: white;
    padding: 1rem 2rem;
    border-bottom: 4px solid #003f6b;
}

#header h1 {
    font-size: 2em;
    margin: 0;
    color: white;
}

#header p {
    font-size: 1.1em;
    margin: 0;
    color: #e0ecf5;
}

/* Logo */
#header img {
    height: 80px;
    vertical-align: middle;
}



/* Section Titles */
h2,
h3,
h4 {
    color: #005ea8;
    border-left: 6px solid #007bce;
    padding-left: 0.6rem;
    margin-top: 2rem;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

table th {
    background-color: #e0f0ff;
    color: #003f6b;
    padding: 0.8rem;
    border: 1px solid #bcd9f1;
}

table td {
    padding: 0.8rem;
    border: 1px solid #dce9f5;
}

/* Speaker Images */
img.speaker-photo {
    width: 100px;
    border-radius: 10px;
    border: 2px solid #007bce;
}

/* Footer */
#footer {
    background-color: #005ea8;
    color: #eaf4fb;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    font-size: 0.9em;
}

/* Buttons */
.button,
input[type="submit"],
.form-submit {
    background: linear-gradient(135deg, #007bff, #00aaff);
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    transition: background 0.3s ease, transform 0.2s;
}

.button:hover,
input[type="submit"]:hover {
    background: linear-gradient(135deg, #f7f7f7, #000000);
    transform: scale(1.03);
}

/* Links */
a {
    color: #000000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #007bce;
}  