body {
    background: #f5f7fa;
    font-family: Arial, sans-serif;
}

.container {
    width: 60%;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

input[type=text] {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
}

button {
    width: 100%;
    padding: 14px;
    background: #0078ff;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

button:hover {
    background: #005fcc;
}

.json {
    background: #1e1e1e;
    color: #dcdcdc;
    padding: 20px;
    border-radius: 8px;
    white-space: pre-wrap;
    font-family: monospace;
    font-size: 14px;
}

.back {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: #0078ff;
    font-size: 18px;
}

.card {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.card h2 {
    margin-top: 0;
    color: #0078ff;
}

.decision {
    margin-bottom: 15px;
}

/* ----------------------------- */
/* TOGGLE BUTTON (Activities + Persons) */
/* ----------------------------- */
.toggle-btn {
    background: none;
    border: none;
    color: #0078ff;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    padding: 0;
}

.toggle-btn:hover {
    text-decoration: underline;
}

/* ----------------------------- */
/* PERSON BLOCKS */
/* ----------------------------- */
.person-block {
    margin-bottom: 20px;
    padding-bottom: 10px;
}

/* Hidden details inside Πρόσωπα */
.person-details {
    margin-top: 10px;
    padding-left: 12px;
    border-left: 3px solid #0078ff;
}
.suspended {
    color: #d40000;
    font-weight: bold;
    margin-left: 10px;
    padding: 3px 6px;
    border: 2px solid #d40000;
    border-radius: 6px;
}