/*
    Use this stylesheet to modify the layout of your
    conference.
*/

/* ----------- Styles for the conference header ----------- */

/*
The wrapper of the whole conference page.
*/
.conf {
  width: 100%;
  border: none;
  margin: auto;
}

/*
  Wraps around the upper part of the conference header.
  */
.confTitleBox {
  position: relative;
  color: white;
  height: 200px;
  border: none;
  border-radius: 1px;
  background: #f0f0f0;
  background-size: 800px;
  background-image: linear-gradient(
      to right,
      rgba(245, 246, 252, 0),
      rgba(240, 240, 240, 0.8)
    ),
    url("https://events.kfupm.edu.sa/event/132/attachments/28/127/SCOPE%20Banner%2003-02.jpg");
  background-repeat: no-repeat;
  background-position: center;
}

/*
  Sets the width of the upper part of the conference header.
  Is set to 950px and centered by default.
  */
.confTitle {
  width: 950px;
  margin: 0 auto;
}

/*
  The box containing the logo. By the default the logo is placed
  on the left of the conference title.
  */
.confLogoBox {
  float: left;
  padding-right: 10px;
}

/*
  The style for the title text.
  */
.conference-title-link {
  font-family: "Calibri";
  font-size: 0pt;
  display: block;
  padding: 0 px 0;
  color: #1a6457;
}

/*
  Wrapper around the bottom part of the conference header
  */
.confSubTitleBox {
  background: #ffffff;
  padding: 1rem 0;
  text-align: center;
  border: none;
  padding-block: 2rem;
}

/*
  The content of the lower part of the header. Is by default
  centered and has a fixed width.
  */
.confSubTitleContent {
  width: 950px;
  margin: 0 auto;
  font-size: 11pt;
  color: #24425a;
  font-family: "Calibri";
}

/*
  Style for links in the lower part of the header
  */
.confSubTitle a {
  font-size: 11pt;
  font-family: "Calibri";
}

/*
  Styles for the date and place information.
  */
.datePlace {
  font-size: 12pt;
  font-family: "Calibri";
}

.datePlace > * {
  margin-bottom: 10px;
}

.place {
  font-weight: 600;
  font-size: 1.4rem;
}

.date {
  font-size: 1.4rem;
  font-weight: 600;
}

.date > span {
  font-size: 1rem;
}

/*
List Styles
  */

ol {
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

ol li {
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

ol li:last-child {
  border-bottom: none;
}

ol li:hover {
  background-color: #f5f5f5;
}

/*
  Announcement styles
  */
.simpleTextAnnouncement {
  background: #f5faff url(/images/conf/sprites_blue.png) repeat-x scroll 0 -400px;
  border-top: 1px solid #c2d6e7;
  font-family: "Calibri";
  font-weight: bold;
  font-size: 10pt;
  text-align: center;
  color: #0f283d;
  padding: 8px 0;
}

/* ----------- Styles for the main content ----------- */

/*
  The wrapper around the menu and the page content.
  By default centered with a fix width.
  */
#confSectionsBox {
  width: 950px;
  margin: 0 auto;
  margin-top: 30px;
}

.title-with-actions {
  color: #27be61;
}

/* Headers */
.conferenceDetails :not(td) > p span span {
  color: #27be61;
}

/* ----------- Styles for the menu ----------- */

/* Styles for all menu Items */

/*
  Wrapper around the menu
  */
.conf_leftMenu {
  float: left;
  width: 200px;
}

/*
  Styles for the menu box
  */
#outer {
  border: none;
  background: #f3f3f6;
  border-radius: 7px;
  padding: 7px;
}

/*
  The menu item
  */
#outer li a {
  font-family: "Calibri";
  font-size: 13pt;
  border-radius: 7px;
  margin: 5px;
}

/*
  The menu item when doing mouseover
  */
#outer li a:hover {
  background: #e2e2e2;
}

#outer .menuConfTitle.selected > a:hover,
#outer .menuConfMiddleCell.selected > a:hover {
  background: #27be61;
}

/*
  A non selected menu item
  */
.menuConfTitle {
  text-align: left;
}

.menuConfTitle a {
  color: #72747b;
  padding: 7px 12px;
}

/*
  A selected menu item
  */

.menuConfTitle.selected > a,
.menuConfMiddleCell.selected > a {
  font-weight: 600;
  color: #ffffff;
  background: #27be61;
}

.menuConfSelected,
.menuConfMiddleCellSelected {
  background: none;
  border: none;
}

/*
  sub menu item
  */
li ul.inner li a {
  padding: 7px 12px 7px 30px;
  background: transparent url(/images/conf/left_menu_bullet.png) scroll
    no-repeat 15px center;
}

/*
  Support box
  */

.support_box {
  background: #f6f6f6;
  border-radius: 0px 0px 7px 7px;
  border: none;
}

.support_box > h3 {
  color: #f3f3f3;
  font-weight: 600;
  border-radius: 7px 7px 0px 0px;
  background: #27be61;
  padding: 5px;
}

.support_box li {
  margin-bottom: 5px;
}

/* ----------- Styles for the page content ----------- */

/*
  Wrapper around the content
  */
.confBodyBox {
  margin-left: 230px;
}

/* Table Styles */

table {
  border-collapse: collapse;
}

table li {
  list-style-type: "-  ";
}

.action-box {
  border-radius: 7px;
}

.infoline {
  border: 1px solid "#27985d";
}

conference-page header h2 {
    color: #057c22;
    padding-right: 5px;
}