body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
}

header {
    background: #222;
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header img {
    height: 40px;
}

.container {
    max-width: 600px;
    margin: 3rem auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

button {
    background: #007bff;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background: #0056b3;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 0.6rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.doc-link a {
    display: inline-flex;
    align-items: center;
    font-weight: bold;
    color: #1a73e8;
    text-decoration: none;
    margin-top: 1rem;
}

.doc-link a:hover {
    text-decoration: underline;
}

.docs-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.user-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.user-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.user-card form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: flex;
    flex-direction: column;
}

.form-row label {
    font-weight: bold;
    margin-bottom: 4px;
}

.form-row input,
.form-row select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.doc-link-preview {
    display: inline-flex;
    align-items: center;
    margin-top: 5px;
    font-size: 14px;
    text-decoration: none;
    color: #1a73e8;
}

.doc-link-preview img {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

.btn-update {
    margin-top: 10px;
    background-color: #1a73e8;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-update:hover {
    background-color: #1558b0;
}
