
html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

body {
    background: #fae8d5;
    display: flex;
    flex-direction: column;
}

.custom-navbar {
    background-color: #ac846d !important; /* Override Bootstrap default color */
}

.navbar .nav-link {
    color: white !important; /* Ensure nav links are visible */
}

.navbar .navbar-brand img {
    height: 40px;
}

.container {
    flex: 1; /* Allow the container to take up available space */
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-container {
    text-align: center;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: white;
    padding: 10px;
}

.profile-title {
    color: white;
    font-size: 2rem;
    margin-top: 20px;
    padding: 0 20px;
    background-color: #b49279;
    border-radius: 5px;
}

.btn-success {
    background-color: #744434;
    border-color: #744434;
}
img {
    border-radius: 40px;
}
.btn-success:hover, .btn-success:active,{
    background-color: #7F7871;
    border-color: #7F7871;
}

footer {
    background-color: #ac846d;
    color: #ffff;
    text-align: center;
    padding: 10px 0;
}

.footer-content p {
    margin: 0;
    font-size: 10px;
}
