﻿:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: #f5f5f5;
}

.page {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 300px;
    background: var(--secondary-color);
    color: white;
    padding: 2rem;
    position: fixed;
    height: 100vh;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 5px solid var(--primary-color);
}

    .profile-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.navbar-brand h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

    .nav-link:hover {
        background-color: var(--primary-color);
    }

    .nav-link i {
        width: 20px;
        text-align: center;
    }

main {
    flex: 1;
    background-color: white;
    min-height: 100vh;
}

.top-row {
    background-color: var(--dark-color);
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-link {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

    .social-link:hover {
        color: var(--primary-color);
    }

.content {
    padding: 2rem;
}

/* Add more styles as needed */
