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

body {
    font-family: Arial, sans-serif;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.progress-bar {
    background-color: #f5f5f5;
    padding: 1rem;
    border-bottom: 1px solid #ddd;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.progress-bar-container {
    width: 100%;
    height: 20px;
    background-color: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: #4CAF50;
    width: 0%;
    transition: width 0.3s ease;
}

.main-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.walk-history {
    width: 300px;
    background-color: #f5f5f5;
    padding: 1rem;
    overflow-y: auto;
    border-right: 1px solid #ddd;
}

.walk-history h2 {
    margin-bottom: 1rem;
    color: #333;
}

.walk-item {
    background-color: white;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
}

.walk-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #f8f8f8;
}

.walk-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
}

.walk-item p {
    color: #666;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.map-wrapper {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.map {
    flex: 1;
    height: 100%;
    width: 100%;
}

.map-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.map-controls {
    padding: 10px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    display: flex;
    align-items: center;
    width: 100%;
}

.control-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.control-button:hover {
    background-color: #3e8e41;
}

.hint {
    margin-left: 15px;
    color: #666;
    font-size: 14px;
}

.walk-link {
    display: inline-flex;
    margin-left: 10px;
    color: #4CAF50;
    text-decoration: none;
    vertical-align: middle;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.walk-link:hover {
    color: #3e8e41;
    background-color: rgba(76, 175, 80, 0.2);
    transform: translateY(-1px);
}

.walk-link svg {
    display: block;
    width: 18px;
    height: 18px;
}

.walker-select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
}

.walker-select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}

.status-pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid currentColor;
}

.version {
    margin-left: auto;
    color: #999;
    font-size: 12px;
    font-family: monospace;
}