/* assets/css/style.css */

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    margin: 0;
    padding: 20px;
    color: #333;
  }
  
  .container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    min-height: 90vh;
  }
  
  h1, h2 {
    text-align: center;
    color: #2c3e50;
  }
  
  p {
    text-align: center;
    font-size: 1.1em;
    color: #34495e;
  }
  
  table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
  }
  
  th, td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
  }
  
  th {
    background-color: #2980b9;
    color: #fff;
    font-weight: 500;
  }
  
  tr:nth-child(even) {
    background-color: #f2f2f2;
  }
  
  tr:hover {
    background-color: #e9f5fc;
  }
  
  @media (max-width: 600px) {
    th, td {
      font-size: 14px;
      padding: 10px;
    }
  }
  
  section {
    margin-bottom: 50px;
  }
  
  .activity-list {
    list-style: none;
    padding: 0;
  }
  
  .activity-list li {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  
  .activity-list button {
    padding: 8px 12px;
    background-color: #2980b9;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .activity-list button:hover {
    background-color: #1f6391;
  }
  
  .miles-counter {
    font-size: 1.3em;
    font-weight: 500;
    text-align: center;
    margin: 20px 0;
    color: #2c3e50;
  }
  
  footer {
    text-align: center;
    font-size: 0.9em;
    color: #777;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #ddd;
  }
  
  .login-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .login-buttons button {
    padding: 10px 20px;
    background-color: #2980b9;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .login-buttons button:hover {
    background-color: #1f6391;
  }
  
  .profile {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .profile img {
    border-radius: 50%;
    margin-bottom: 10px;
  }
  
  .navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  