
html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fae8d5;
    display: flex;
    flex-direction: column;
}

.custom-navbar {
    background-color: #ac846d !important; 
}

.navbar .nav-link {
    color: white !important; 
}

.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;
}


.container {
    flex: 1; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-container {
    text-align: center;
    background-color: #ffeedb;
    padding: 15px;
    width: 600px;

}

.profile-title {
    color: white;
    font-size: 2rem;
    background-color: #b49279;
    border-radius: 10px;
}

.btn-success {
    background-color: #744434;
    border-color: #744434;
}

.btn-success:hover, .btn-success:active,{
    background-color: #7F7871;
    border-color: #7F7871;
}

footer {
    background-color: #ac846d;
    color: #ffff;
    text-align: center;
    padding: 9px;
}

.footer-content p {
    margin: 0;
    font-size: 10px;
}


 .comment-section {
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }

        .comment-section textarea {
            width: 600px;
            height: 100px;
            padding: 10px;
            border-radius: 5px;
            border: none;
            resize: none;
        }
        .comment-section button {
            background-color: #744434;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px;
        }
        .comment-section button:hover {
            background-color: #744434;
        }