
.container1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.column {
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.item {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.icon {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
}




.table-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.surgeon-table {
    width: 80%;
    border-collapse: collapse;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.surgeon-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.surgeon-table tr:nth-child(even) {
    background-color: #f2f2f2;
}
