/*********************** SEASnet custom CSS ***********************************/

/*----------------------------------------------------------------------------*/
/*      HEADER
 */
/*----------------------------------------------------------------------------*/

/* Change the background color to be white (was light gray) to match the Samueli logo. 
 */
.container-fluid {
    background: #FFF;
}

/*----------------------------------------------------------------------------*/
/*      Default login box
 */
/*----------------------------------------------------------------------------*/
#page-login .default-box {
    background-color: #DAEBFE;
}
#page-login .announcement-heading {
    display: none;
}
#page-login #announcements ul li {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}
#page-login .login-icon img {
    max-width:300px;
}
/*----------------------------------------------------------------------------*/
/*      Registration box
 */
/*----------------------------------------------------------------------------*/

/* Hide some input boxes
 */
#registration-box #timezone,
#registration-box #organization,
#registration-box #default-page,
#registration-box #position,
#registration-box #phone {
    display: none;
}

/*----------------------------------------------------------------------------*/
/*      Profile box
 */
/*----------------------------------------------------------------------------*/
/* Do not allow users to change the timezone
 */
#profile-box #timezoneDropDown {
    pointer-events: none; /*globally cannot click on fields*/
    touch-action: none; /*globally cannot touch fields*/
}

/*----------------------------------------------------------------------------*/
/*     Dashboard 
 *
 * The Dashboard has 3 areas: 
 *	Announcements
 *	Upcoming Reservations
 *	Resource Availability
 */
/*----------------------------------------------------------------------------*/

/* Hide "Resource Availability" area 
 */
#availabilityDashboard {
	display:none
}

.announcement-list li {
  border-left: 0px;
}
/*----------------------------------------------------------------------------*/
/*      Bookings page
 */
/*----------------------------------------------------------------------------*/

/* Hide the Resource Filter block
 */
#reservations-left {
	display: none
}

/*----------------------------------------------------------------------------*/
/*      Reservation page
 */
/*----------------------------------------------------------------------------*/

/* In the reservation from, replace the text "Additional Attributes" with our own text.
 */
/*
#custom-attributes-placeholder div.customAttributes span {
    display: none;
}
*/

/*----------------------------------------------------------------------------*/
/*      Schedule menu
 */
/*----------------------------------------------------------------------------*/

/* Schedule > My Calendar > Change Calendar
 * and
 * Schedule > Resource Calendar > Change Calendar
 *
 * For both "Change Calendar" dropdown, set the background to "gray" for the schedule labels.
 */

.select2-results__option[id$="s1"] {
        background-color: lightgray;
        font-weight: bold;
}

/* Change the menu label "Schedule" to "Tour Schedule".
 */
#navScheduleDropdown a.dropdown-toggle:before {
	content: "Tour ";
}

/* Don't display the following because they are not that useful and can be confusing:
 *  - Resource Calendar
 */
#navResourceCalendar {
	display: none;
}

/* Don't display the following because they are not that useful and can be confusing:
 *  - Find a Time
 *  - Search Reservations
 */
#navFindATime {
	display: none;
}

/*----------------------------------------------------------------------------*/
/*      FOOTER
 */
/*----------------------------------------------------------------------------*/

/* Don't display it.
 */
.footer {
    display:none;
}
/* admin */
.admin-sidebar {
 background-color: #003B5C;
}
.admin-sidebar a {
 color: #f7f7f7;
}
