body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    transition: background-color 0.5s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

h1 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    transition: color 0.3s ease;
}

h2 {
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
}

h3 {
    color: #95a5a6;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    transition: color 0.3s ease;
}

.container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 90%;
    max-width: 800px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.section {
    margin-bottom: 20px;
    padding-bottom: 0px;
}

.location {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.location:hover {
    background-color: #ecf0f1;
    transform: translateY(-2px);
}

.location-info {
    margin-right: auto;
    min-width: 0;
}

.location-title {
    font-size: 18px;
    color: #2c3e50;
    display: block;
    transition: color 0.3s ease;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.location-provider {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 5px;
    display: block;
}

.connectors {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.connector {
    width: 10px;
    height: 25px;
    background-color: #3498db;
    border-radius: 5px;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.connector.available {
    background-color: #2ecc71;
}

.connector.occupied {
    background-color: #e74c3c;
}

.connector.malfunctioning {
    background-color: #f39c12;
}

.connector.unknown {
    background-color: #95a5a6;
}

.prices {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price {
    font-size: 16px;
    color: #555;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.price .amount {
    color: #95a5a6;
}

.price .amount.goedkoper {
    color: #2ecc71;
}

.price .amount.duurder {
    color: #e74c3c;
}

.price .amount.marktconform {
    color: #3498db;
}

.price.unknown .amount {
    color: #95a5a6;
}

.status-text {
    font-weight: 600;
}

.status-text.available {
    color: #2ecc71;
}

.status-text.occupied {
    color: #e74c3c;
}

.status-text.malfunctioning {
    color: #f39c12;
}

.status-text.unknown {
    color: #95a5a6;
}