body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
}

h1, h2, h3 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

#chargePointsList ul {
    list-style: none;
    padding: 0;
}

#chargePointsList li {
    background-color: #e9e9e9;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chargePointsList li:hover {
    background-color: #dcdcdc;
    cursor: pointer;
}

#chargePointsList li span {
    font-weight: bold;
}

.status-online { color: green; }
.status-offline { color: red; }
.status-charging { color: blue; }
.status-available { color: gray; }

.controls {
    margin-top: 20px;
    text-align: center;
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin: 5px;
}

button:hover {
    background-color: #0056b3;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

#currentTransactionData {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
}

#currentTransactionData p {
    margin: 5px 0;
}
