/*
 * 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.
 */

html,
body {
  background: #eee;
  font-family: Helvetica, Arial, sans-serif;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;

  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.export-links-list {
  display: flex;
  list-style: none;
  padding: 0;
}

.export-links-list li {
  flex: 1;
  margin: 0 10px;
  text-align: center;
}

.export-links-list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;

  border: 1px solid #ccc;
  border-radius: 5px;

  padding: 20px;
  height: calc(100% - 40px);
}

.export-links-list a:hover {
  background: #f9f9f9;
  border-color: #999;
}

a .icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.mb-4 {
  margin-bottom: 2rem;
}