/* Main stylesheet for Liga Latina Project */

/* Club name truncation in standings table */
.club-name-truncate,
.club-name-cell,
.club-name-cell-mobile {
  display: inline-block !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.club-name-cell {
  max-width: 120px !important;
  width: 120px !important;
}

.club-name-cell-mobile {
  max-width: 80px !important;
  width: 80px !important;
}

/* Force truncation for all columns with club names */
.column.club-name-cell,
.column.club-name-cell-mobile {
  flex-grow: 0 !important;
  flex-shrink: 0 !important;
}

/* Responsive club name truncation */
@media screen and (max-width: 768px) {
  .club-name-truncate,
  .club-name-cell {
    max-width: 80px !important;
    width: 80px !important;
  }
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
header {
    background-color: #343a40;
    color: #fff;
}

/* Footer styles */
footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
    margin-top: 30px;
}

/* Custom Liga Latina styles */
.liga-brand {
    font-weight: bold;
    color: #28a745;
}

.hero-section {
    text-align: center;
    padding: 50px 0;
    background-color: #f4f4f4;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}
