/* Basic styling */
body {
    font-family: Arial, sans-serif;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

label {
    display: block;
    margin-bottom: 10px;
}

input, textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #005f8d;
}

/* Step styling */
.persona-pro-step {
    display: none;
}

.persona-pro-step.active {
    display: block;
}

/* Table styling */
.persona-pro-table {
    width: 100%;
    overflow-x: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.persona-pro-table table {
    width: 100%;
    border-collapse: collapse;
}

.persona-pro-table th, .persona-pro-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.persona-pro-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}
