* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #9BBEC7;
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    flex-direction: column;
    display: flex;
}

.header {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.team-color {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    border: 2px;
    margin: 0 auto;
    border-style: solid;
    border-color: grey;
}

.station-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.station-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #4a5568;
}

.station-location {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #2d3748;
}

.station-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.distance-info {
    background: #e2e8f0;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.distance-close {
    background: #c6f6d5;
    color: #2f855a;
}

.tasks-section {
    flex: 1;
    margin-top: auto;
}

.tasks-title {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    background: #f7fafc;
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.2s;
}

.accordion-header:hover {
    background: #edf2f7;
}

.accordion-header::after {
    content: '+';
    float: right;
    font-size: 20px;
    transition: transform 0.2s;
}

.accordion-header.active::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: auto;
    transition: max-height 0.3s ease;
    background: #fff;
}

.accordion-content.active {
    max-height: 500px;
}

.accordion-body {
    padding: 15px 20px;
    color: #666;
    line-height: 1.5;
}

.loading {
    text-align: center;
    color: #fff;
    font-size: 18px;
    margin-top: 50px;
}

.error {
    background: #fed7d7;
    color: #c53030;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
}

.location-button {
    background: #4299e1;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin: 10px 0;
    width: 100%;
    transition: background-color 0.2s;
}

progress {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border: none;
    border-radius: 4px;
    background-color: #ddd;
}

progress::-webkit-progress-bar {
    background-color: #ddd;
    border-radius: 4px;
}

progress::-webkit-progress-value {
    background-color: #3498db;
    border-radius: 4px;
    transition: width 0.2s ease;
}

progress::-moz-progress-bar {
    background-color: #3498db;
    border-radius: 4px;
    transition: width 0.2s ease;
}