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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 100%;
    padding: 15px;
    margin: 0 auto;
}

.location-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.location-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.refresh-btn {
    background: #007AFF;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.warning-box {
    background: #FFF3CD;
    color: #856404;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}

.branches-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.branch-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.branch-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.branch-address {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.branch-hours {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.branch-distance {
    font-size: 14px;
    color: #007AFF;
    margin-bottom: 10px;
}

.branch-status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    margin-bottom: 10px;
}

.status-normal {
    background: #E8F5E9;
    color: #2E7D32;
}

.status-maintenance {
    background: #FFEBEE;
    color: #C62828;
}

.branch-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.call-btn {
    background: #4CAF50;
    color: white;
}

.nav-btn {
    background: #2196F3;
    color: white;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: #666;
}

footer a {
    color: #666;
    text-decoration: none;
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.cookie-notice p {
    margin: 0;
    font-size: 14px;
    flex: 1;
}

.cookie-notice button {
    background: #007AFF;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-notice button:hover {
    background: #0056b3;
}

// ... existing code ...
} 