/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

h1 {
    font-size: 24px;
    margin: 10px 0;
}

p {
    color: gray;
    margin-bottom: 20px;
}

.links {
    display: flex;
    flex-direction: column;
}

.link {
    display: block;
    background: #3498db;
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 5px;
    margin: 5px 0;
    transition: 0.3s;
}

.link:hover {
    background: #2980b9;
}

.shortcut-btn {
    margin-top: 15px;
    padding: 10px 15px;
    font-size: 16px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.shortcut-btn:hover {
    background-color: #219150;
}
