/* =========================================================================
   Indico conference — custom CSS
   -------------------------------------------------------------------------
   Instance uses the classic conference theme (.confheader / .confTitle).
   The colored header background is handled by Indico's built-in Layout
   colour settings, so no CSS is needed for that.

   Upload:  Event management -> Layout -> "Custom CSS file"
   ========================================================================= */

/* --- Hide the duplicate text title (keep logo/banner + dates) ---------- */
/* The logo sits inside the title link as a sibling of the text, so we
   target just the text <span>. Verified live. */
.conference-title-link > span {
    display: none !important;
}

/* --- Widen the left menu so the full contact email fits ---------------- */
/* The layout is a float: menu on the left, content offset by margin-left.
   Both must change together by the same amount (here 200px -> 240px,
   so the content margin goes 230px -> 270px to keep the 30px gap). */
.conf_leftMenu {
    width: 240px !important;
}

.confBodyBox {
    margin-left: 270px !important;
}

/* Keep the contact email on a single line instead of wrapping at "@"/"." */
.support_box a[href^="mailto:"] {
    white-space: nowrap !important;
}