/*
    DJANGO Admin style overrides
*/
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
body {
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Raleway", sans-serif;
}

.button.default,
input[type=submit].default,
.submit-row input.default {
  background: rgb(63, 109, 231);
}

.button.default:active,
input[type=submit].default:active,
.button.default:focus,
input[type=submit].default:focus,
.button.default:hover,
input[type=submit].default:hover {
  background: rgba(63, 109, 231, 0.9);
}

/* Secondary buttons */
.button,
input[type=submit],
.submit-row input {
  background: rgb(153, 153, 153);
}

.button:active,
input[type=submit]:active,
.button:focus,
input[type=submit]:focus,
.button:hover,
input[type=submit]:hover {
  background: rgb(102, 102, 102);
}

/* MODULES */
.module h2,
.module caption,
.inline-group h2 {
  background: rgb(13, 34, 63);
}

/* BREADCRUMBS */
div.breadcrumbs {
  background: rgb(13, 34, 63);
}

/* HEADER */
#header {
  background: white;
}

#header a:link, #header a:visited {
  color: #3e6ae4;
}

#user-tools {
  color: #fff;
}
#user-tools a {
  color: #fff;
  border-bottom: 1px solid rgba(63, 109, 231, 0.25);
}
#user-tools a:hover {
  border-bottom: 1px solid rgb(63, 109, 231);
}

.object-tools a:hover {
  background-color: rgb(13, 34, 63) !important;
}

/* admin/static/admin/css/login.css */
body.login {
  background: #f8f8f8;
}
body.login #branding {
  float: none;
}

body.login #header {
  background: white;
}
body.login #header .logo-login {
  width: 100%;
  height: auto;
  margin: 10px auto;
  display: block;
}

#branding .logo {
  height: 27px;
  width: auto;
}

/* admin/static/admin/css/widgets.css */
.selector-chosen h2 {
  color: #fff;
  background: rgb(13, 34, 63) !important;
}

.calendar caption {
  color: #fff !important;
  background: rgb(13, 34, 63) !important;
}

.calendar td.selected a {
  background: #121114 !important;
}

.calendar td a:hover {
  background: #121114 !important;
}