
.profile-container {
    max-width: 1000px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    display: flex;
    gap: 20px;
}

.left-section {
    flex: 0 0 200px;
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.blue-bar {
    width: 14px;
    background-color: #1a237e;
    position: relative;
    left: 186px;
    top: 254px;
    height: calc(100% - 280px); 
}

.right-section {
    flex: 1;
}

.header {
    background-color: #e0e0e0;
    padding: 20px;
    margin-bottom: 20px;
}

.header h1 {
    margin: 0;
    font-size: 24px;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.header p {
    margin: -6px 0 0 -10px;
    color: black;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.content {
    display: flex;
    gap: 15px;
}

.text-content {
    line-height: 1.6;
    color: #333;
}

.text-content p {
    margin-bottom: 15px;
}
.message{
    margin-left: 12px;
}


@media screen and (max-width: 426px) {
  .content{
    display: flex;
    flex-direction: column;
  }
}

.Brief-Profile{
    background-color: #220a61;
    color: white;
}

.Brief-Profile:hover{
    background-color: #220a61;
    color: white;
}