/* 
Set the background colour for links (the "a") under the plone-navbar with the CSS class "state-private" 
to light grey, so that we don't have illegible red on blue) 
*/
 
.plone-navbar a.state-private {
    background-color: #d3d3d3;
}

/* 
Darken the portlet header 
*/

.portlet .portletHeader {
    background: #d3d3d3;
}

/*
Set the body text colour to black
*/

body {
    color: #000000;
}

@media (min-width: 768px) {
  .plone-modal .plone-modal-content {
    width:  200px;
    height: 400px;
  }
}
@media (min-width: 992px) {
  .plone-modal .plone-modal-content {
    width:  300px;
    height: 600px;
  }
}
@media (min-width: 1200px) {
  .plone-modal .plone-modal-content {
    width:  400px;
    height: 800px;
  }
}
@media (min-width: 1600px) {
  .plone-modal .plone-modal-content {
    width:  1000px;
    height: 1000px;
  }
}
