﻿
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin:0 auto;
    padding-top: 70px;
}



.avatar-wrapper {
    margin-top: -40px;
    margin-bottom: 20px;
    z-index: 1;
}

.profile-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;
}

.full-name {
    color: #4a0e2e;
    font-size: 2rem;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 2px;
}

.job-title {
    color: #8e214d;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 12px;
}

.action-buttons {
    margin-top: 5px;
}

.btn-custom-maroon {
    background-color: #8e214d;
    color: white !important;
    padding: 12px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 33, 77, 0.3);
}

    .btn-custom-maroon:hover {
        background-color: #6d193b;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(142, 33, 77, 0.4);
        color: white !important;
    }







