body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    margin-top: 50px;
    background-color: #f4f4f9;
    color: #333;
}

input, textarea, select {
    display: block;
    margin: 20px auto;
    padding: 12px;
    width: 90%;
    max-width: 300px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 16px;
}

button {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

img {
    border-radius: 50%;
    cursor: pointer;
    display: block;
    margin: 20px auto;
    width: 150px;
    height: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 20px;
}

.persona-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.persona-card:hover {
    transform: translateY(-5px);
}

.persona-card h2 {
    margin: 0;
    color: #007bff;
    font-size: 20px;
}

.tagline {
    font-style: italic;
    color: #555;
    font-size: 16px;
}

blockquote {
    font-size: 14px;
    color: #333;
    margin-top: 10px;
    border-left: 4px solid #007bff;
    padding-left: 10px;
}

h1{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    margin-top: 50px;
    background-color: #f4f4f9;
    color: #bb6e09;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

#profile-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
}

.profile-photo-container img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #FFD700; /* Golden for the border */
    object-fit: cover;
}

.input-field {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.btn-save, .btn-logout {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    background-color: #FFD700; /* Yellow theme */
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.btn-save:hover, .btn-logout:hover {
    background-color: #CCAC00;
}


p#status {
    color: red;
    margin-top: 20px;
}
