/* Global Page Layout */

body {
    font-family: "Lato", sans-serif;
    background: #f4f7f9;
    margin: 0;
    padding: 20px;
}

/* Activity 1 (CRUD) */

/* Card container */
.page-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Buttons */

button {
    cursor: pointer;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 14px;
    margin-right: 6px;
}

.btn-add {
    background: #2b7cff;
    color: white;
}

.btn-edit {
    background: #777;
    color: white;
}

.btn-del {
    background: #e74c3c;
    color: white;
}

/* Table styling */

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th, td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

th {
    background: #eef2f5;
    text-align: left;
}

tr:hover {
    background: #f9fbfc;
}

/* Responsive */
@media (max-width: 700px) {
    .page-card {
        padding: 15px;
    }

    table {
        font-size: 14px;
    }
}


/* Activity 2 (FHIR Query) */

.controls {
  margin: 10px 0;
}

.controls input,
.controls select,
.controls button {
  margin-right: 6px;
  padding: 6px;
}

/* Activity 3 (Charts) */



/* Activity 4 (Maps) */

#map {
  height: 500px;
  width: 100%;
}
