/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

 /* OLD COLORS: 
  #4488ee (navbar, main);
  #77bbff (text field, button:hover);
  #66aaff (body);
  #5599ff (button);
  */

/*
 *
 * "Partials" Classes
 *
 */

 .rounded-shadow-border {
  border-top: 1px solid black;
  border-left: 1px solid black;
  border-right: 4px solid black;
  border-bottom: 4px solid black;
  border-radius: 10px;
 }

/*
 *
 * Header Classes
 *
 */

 .navbar, .main {
  background-color: #75c3f7;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  width: 70%;
  min-width: 1300px;
  margin-left: auto;
  margin-right: auto;
 }

 .navbar {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
 }

 .main {
  min-height: 500px;
 }

 .navbar-logo {
  font-size: 50px;
  margin-top: auto;
  margin-bottom: auto;
  align-self: start;

  a {
    text-decoration: none;
    color: #03045e;
  }
 }

 .logo-image {
  height: 100px;
 }

 .navbar-user {
  align-self: end;
  display: flex;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;

  a {
    text-decoration: none;
    color: #03045e;
  }
 }

 /*
 *
 * Body classes
 *
 */

 .puzzles-display {
  display: flex;
  justify-content: center;
 }

 .puzzle-column {
  display: flex;
  flex-direction: column;
 }

 .puzzle-display {
  margin: 2px;
  transition: .5s ease;

  img {
    display: block;
  }
 }

 .puzzle-display:hover {
  opacity: 0.5;
 }

 .field-text {
  background-color: #caf0f8;
  border-radius: 5px;
  font-size: 16px;
 }

 .button {
  background-color: #009dff;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 20px;
  text-decoration: none;
  color: #03045e;

  a {
    text-decoration: none;
    color: #03045e;
  }
 }

 .button:hover {
  background-color: #ffae00;
 }

 .button-ml {
  margin-left: 5px;
 }

 .object-details {
  display: flex;
  flex-direction: column;
  margin: 15px;
 }

 .object-buttons {
  display: flex;
 }

 /*
 *
 * Global Tags
 *
 */

 body {
  background-color: #ffc886;
  font-size: 16px;
  color: #03045e;
 }

 h1, h2, h3 {
  margin: 0px;
  margin-top: 5px;
  margin-left: 5px;
 }

 hr {
  border: 1px solid #03045e;
 }

 table, tr, td {
  padding-top: 0px;
  padding-bottom: 0px;
 }
