body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
}

.logo {
    text-align: center;
}

.logo img {
    max-width: 100%;
    height: auto;
    max-height: 240px;
}
    
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

form .form-row {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 600px;
}

.search-box {
    padding: 16px 5px;
    font-size: 16px;
    flex: 1;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    width: 45%;
}

.search-box:focus {
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
    border-color: rgba(223, 225, 229, 0);
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.btn {
    font-size: 14px;
    padding: 10px 20px;
    border: 1px solid #dfe1e5;
    background-color: #f8f9fa;
    color: #3c4043;
    border-radius: 4px;
    cursor: pointer;
    flex: 1;
    min-width: 160px;
    text-align: center;
}

.btn:hover {
    background-color: #f1f3f4;
}

hr {
    margin-top: 15px;
    margin-bottom: 15px;
    border: none;
    border-top: 1px solid #ccc;
}

.profile-container {
    max-width: 700px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: left;
    width: 100%;
}

.profile-container h2 {
    color: #1a0dab;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.profile-item {
    margin: 15px 0;
    font-size: 16px;
}

.profile-item strong {
    display: inline-block;
    width: 130px;
    color: #333;
}

.links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.links a {
    width:100%;
    padding: 10px 10px;
    background-color: #e8f0fe;
    color: #1a73e8;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.links a:hover {
    background-color: #d2e3fc;
}

.edit-link {
    margin-top: 20px;
    text-align: center;
}

.edit-link a {
    color: #f16804;
    text-decoration: none;
}

.edit-link a:hover {
    text-decoration: underline;
}