/* assets/style.css */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f7f9;
    color: #333;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #fff;
    padding: 15px 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar .logo {
    font-weight: bold;
    font-size: 24px;
    color: #2c3e50;
}
.navbar a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.profile-card {
    text-align: left;
}

.profile-card h1 {
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.profile-dl {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 15px;
}
.profile-dl dt {
    font-weight: bold;
    color: #555;
}
.profile-dl dd {
    margin: 0;
    background-color: #f9f9f9;
    padding: 8px;
    border-radius: 4px;
}

.btn {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background-color: #2980b9;
}