/* css/styles.css */
body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    display: flex; 
    margin: 0; 
    height: 100vh; 
    background-color: #f4f7f6;
}
#sidebar { 
    width: 320px; 
    padding: 20px; 
    overflow-y: auto; 
    background-color: #ffffff; 
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}
#map { 
    flex-grow: 1; 
    height: 100%; 
}
.beacon-card { 
    border: 1px solid #e0e0e0; 
    padding: 15px; 
    margin-bottom: 12px; 
    cursor: pointer; 
    border-radius: 6px; 
    transition: all 0.2s; 
}
.beacon-card:hover { 
    background-color: #e3f2fd; 
    border-color: #90caf9;
}
.beacon-name { 
    font-weight: 700; 
    color: #1a73e8; 
    font-size: 1.1em; 
}
.beacon-info { 
    font-size: 0.85em; 
    color: #5f6368; 
    margin-top: 4px;
}
.beacon-card button {
    margin-right: 5px;
    margin-top: 8px;
    padding: 6px 10px;
    border: none;
    border-radius: 4px;
    font-size: 0.8em;
    cursor: pointer;
    transition: background-color 0.2s;
}
.show-map-btn {
    background-color: #fbbc05; /* Google Yellow */
}
.edit-name-btn {
    background-color: #34a853; /* Google Green */
    color: white;
}
.history-btn {
    background-color: #ea4335; /* Google Red */
    color: white;
}
/* Aktywna karta historii */
.beacon-card.active-history {
    background-color: #fff8e1; /* Lekki żółty */
}