h3 {
    margin-bottom: 0;
    padding: 0.5rem;
}

#bg-img-container {
    background-color: #2980b9;
}

#page-content {
    margin-top: 4rem;
    min-height: calc(100vh - 4rem);
    padding: 4rem;
    -webkit-box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.5);
}

#full-page-content {
    min-height: 100vh;
    padding: 0;
}

a.btn:not([class*="btn-warning"]),
a.btn:link:not([class*="btn-warning"]),
a.btn:visited {
    color: #fff;
}

.django-ckeditor-widget {
    width: 100%;
}

#request-instructor-button {
    position: fixed;
    bottom: 20px;
    right: 100px;
    width: 270px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    box-shadow: 2px 2px 19px 1px rgba(0, 0, 0, 0.1);
    cursor: pointer !important;
    background-color: #007bff;
}

.icon-link-container {
    line-height: 0;
}

.announcement-post-item {
    border-radius: 0.25rem;
}

.icon-link {
    display: inline-block;
}

.inactive-quarter {
    background-color: #ecf0f1;
}

.downloads .icon-link-container.pdf,
.downloads .icon-link-container.txt {
    color: #cd232a;
}

.downloads .icon-link-container.xls,
.downloads .icon-link-container.xlsx,
.downloads .icon-link-container.csv {
    color: #217347;
}

.downloads .icon-link-container.doc,
.downloads .icon-link-container.docx {
    color: #2b5895;
}

.downloads .icon-link-container.ppt,
.downloads .icon-link-container.pptx {
    color: #d14628;
}

.announcement_content img {
    max-width: 100%;
}

/* * Styles for accordions on admin session page */
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: #fff;
    color: #666;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: left;
    border: 1px solid rgba(0,0,0,.125);
    outline: none;
    transition: 0.2s;
}
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
    background-color: #ddd;
}
  
  /* Style the accordion panel. Note: hidden by default */
.accordion-panel {
    padding: 0 12px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
  }

input.demo-input::-webkit-outer-spin-button,
input.demo-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
