/* Global Styles */
body {
    background-color: #f8f9fa;
    color: #343a40;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

/* Navigation */
.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

.navbar-logo {
    height: 40px;
    width: auto;
}

/* Footer */
footer {
    flex-shrink: 0;
    background: linear-gradient(to right, #e9ecef 0%, #ced4da 100%);
}

.profile-card {
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-img-container {
    overflow: hidden;
    border-radius: 0.375rem;
}
.profile-img-container img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    border-radius: 30px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #495057;
    background-color: #e9ecef;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}
.social-btn:hover {
    background-color: #6c757d;
    color: white;
}
.social-btn svg {
    margin-right: 0.5rem;
}