
.pmst-profile-header {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
    background: #1e1e1e;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.pmst-cover-photo {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.pmst-profile-content {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-top: -60px;
    position: relative;
}

.pmst-profile-pic img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    background: #eee;
}
.pmst-chat-trigger {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 9997;
  background: none;
  cursor: pointer;
}

.pmst-chat-trigger img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}



.pmst-profile-name {
    margin-left: 20px;
    flex-grow: 1;
}

.pmst-profile-name h2 {
    margin: 0;
    font-size: 36px;
    font-weight: bold;
}

.pmst-profile-name p {
    margin: 5px 0 0;
    color: #ccc;
}

.pmst-profile-action {
    margin-left: auto;
}

.pmst-btn {
    padding: 10px 18px;
    background-color: #fe5252;
    color: #fff ;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
}
a {
    color: #ffffff !important; }
.pmst-btn:hover {
    background-color: #d56464;
}
@media (max-width: 600px) {
    .pmst-profile-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pmst-profile-name {
        order: 2;
        margin-right: 10px
    }

    .pmst-profile-action {
        order: 3;
        text-align: center;
        
    }

    .pmst-btn {
        margin-top: 10px;
    }
}
.pmst-full-profile {
    background: #1e1e1e;
    color: #eee;
    border-radius: 12px;
    overflow: hidden;
    font-family: sans-serif;
    max-width: 900px;
    margin: 30px auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.pmst-cover-photo {
    background-size: cover;
    background-position: center;
}

.pmst-profile-wrapper {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.pmst-profile-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #fff;
}

.pmst-profile-info h2 {
    margin: 0;
    font-size: 24px;
    color: #fff;
}

.pmst-profile-info p {
    margin: 3px 0;
    color: #ccc;
}

.pmst-profile-details {
    padding: 20px;
    border-top: 1px solid #444;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    font-size: 15px;
}

.pmst-profile-details div {
    line-height: 1.4;
}

.pmst-profile-details a {
    color: #00bfff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .pmst-profile-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .pmst-profile-details {
        grid-template-columns: 1fr;
    }
}
.pmst-full-profile {
    position: relative;
}

.pmst-edit-top-button {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.pmst-edit-top-button a {
    background-color: #FE5252;
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
    transition: background 0.2s ease;
}

.pmst-edit-top-button a:hover {
    background-color: #ff3a3a;
}

