/*
 * lending_library.css
 *
 * Styles for the lending library status box and forms.
 */

/* Main container for the status box */
.lending-library-status {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
  }
  
  /* Green for 'Available' status */
  .lending-library-status.status-available {
    background-color: #e8f5e9; /* Light green */
    border-color: #4caf50; /* Darker green */
    color: #2e7d32; /* Dark green text */
  }
  
  /* Yellow for 'Borrowed' status */
  .lending-library-status.status-borrowed {
    background-color: #fff3e0; /* Light orange */
    border-color: #ff9800; /* Darker orange */
    color: #e65100; /* Dark orange text */
  }
  
  /* Red for 'Missing' or 'Repair' status */
  .lending-library-status.status-missing,
  .lending-library-status.status-repair {
    background-color: #ffebee; /* Light red */
    border-color: #f44336; /* Darker red */
    color: #c62828; /* Dark red text */
  }
  
  /* Grey for 'Retired' status */
  .lending-library-status.status-retired {
    background-color: #eceff1; /* Light grey */
    border-color: #90a4ae; /* Darker grey */
    color: #455a64; /* Dark grey text */
  }
  
  /* Styling for the info box at the top of transaction forms */
  .lending-library-form-info {
    background-color: #e3f2fd; /* Light blue */
    border: 1px solid #90caf9; /* Darker blue */
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 8px;
  }
  
  .lending-library-form-info h3 {
    margin-top: 0;
    color: #1565c0; /* Dark blue text */
  }
  
  .lending-library-form-info .location {
    font-size: 1.1em;
    font-style: italic;
  }
  