/* Library-specific styles */
.library-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: 'Georgia', serif;
  background: #fafafa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.library-table th {
  background: #2c3e50;
  color: white;
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #34495e;
  width: 25%; /* Equal width for all column headers */
}

.library-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #ecf0f1;
  font-size: 14px;
  line-height: 1.4;
  width: 25%; /* Equal width for all columns */
}

.library-table tr:hover {
  background: #e8f4f8;
  transition: background 0.2s ease;
}

.library-table tr:nth-child(even) {
  background: #f8f9fa;
}

.library-table tr:nth-child(even):hover {
  background: #e8f4f8;
}

.library-table a {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
}

.library-table a:hover {
  color: #2980b9;
  text-decoration: underline;
}

/* Library page specific layout */
.library-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.library-section {
  margin-bottom: 40px;
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.library-section h2 {
  color: #2c3e50;
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #3498db;
  font-family: 'Georgia', serif;
}

/* Responsive design */
@media (max-width: 768px) {
  .library-table {
    font-size: 12px;
  }
  
  .library-table th,
  .library-table td {
    padding: 8px 10px;
  }
  
  .library-container {
    padding: 10px;
  }
  
  .library-section {
    padding: 15px;
  }
} 