.oichat-form-container {
    max-width: 400px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}
.oichat-form-container h1 {
    color: #FC6D29;
    text-align: center;
    margin-bottom: 20px;
}
.oichat-form input[type="text"],
.oichat-form input[type="email"],
.oichat-form input[type="password"],
.oichat-form input[type="file"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}
.oichat-form button {
    width: 100%;
    padding: 12px;
    background: #FC6D29;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
.oichat-form button:hover {
    background: #e6551b;
}
.oichat-avatar {
    max-width: 120px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 20px;
}
.oichat-form p.error {
    color: red;
    text-align: center;
    margin-bottom: 15px;
}

/* Profile Layout */
.oichat-profile { max-width: 800px; margin: auto; padding: 20px; font-family: sans-serif; }
.oichat-header { display: flex; flex-wrap: wrap; align-items: center; }
.oichat-avatar-circle { width: 120px; height: 120px; background: #eee; border-radius: 50%; display: flex; align-items: center; justify-content: center; overflow: hidden; margin-right: 20px; }
.oichat-avatar-circle img { width: 100%; height: auto; }
.oichat-contact p { margin: 5px 0; }
.oichat-contact a { color: #0073aa; text-decoration: none; }
.oichat-name { font-size: 24px; margin-top: 10px; }
.oichat-status .conected { color: green; font-weight: bold; }
.oichat-status .desconected { color: red; font-weight: bold; }
button.oichat-change-password { margin-top: 15px; }


.oichat-popup-content { background: #fff; padding: 20px; border-radius: 8px; max-width: 400px; width: 90%; }
button.oichat-popup-close { margin-top: 10px; }

/* Responsive */
@media (max-width: 600px) {
    .oichat-header { flex-direction: column; align-items: flex-start; }
    .oichat-avatar-circle { margin-bottom: 15px; }
}

/* Modern Profile Card */
.oichat-profile.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}
.oichat-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.oichat-avatar-circle {
    width: 100px;
    height: 100px;
    background: #f0f0f0;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.oichat-avatar-circle img {
    width: 100%;
    height: auto;
}
.oichat-contact {
    flex: 1;
    min-width: 200px;
}
.oichat-contact p {
    margin: 5px 0;
    color: #333;
}
.oichat-contact a {
    color: #006799;
    text-decoration: none;
}
.oichat-name {
    font-size: 26px;
    margin: 0 0 10px;
    color: #222;
    text-transform: uppercase;
}
.oichat-status .connected {
    color: #2a9d8f;
    font-weight: 600;
}
.oichat-status .disconnected {
    color: #e76f51;
    font-weight: 600;
}
.button.oichat-change-password {
    background: #2a9d8f;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}
/* Responsive */
@media (max-width: 600px) {
    .oichat-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .oichat-avatar-circle {
        margin: 0 0 15px;
    }
}


/* Enhanced Profile Styling */
.oichat-profile.card {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.oichat-header {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
}
.oichat-avatar-circle {
    width: 120px;
    height: 120px;
    background: #f5f5f5;
    border-radius: 50%;
    overflow: hidden;
}
.oichat-contact {
    display: grid;
    grid-row-gap: 8px;
}
.oichat-contact p, .oichat-contact a {
    margin: 0;
    color: #444;
}
.oichat-name {
    font-size: 28px;
    margin: 20px 0 5px;
    color: #222;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}
.oichat-status {
    margin: 15px 0;
    font-size: 16px;
}
.button.oichat-change-password {
    background: #264653;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}
.button.oichat-change-password:hover {
    background: #1b3742;
}
/* Responsive */
@media (max-width: 600px) {
    .oichat-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .oichat-avatar-circle {
        margin: 0 auto 15px;
    }
}


/* Forgot password link style */
.oichat-form-container .oichat-forgot {
    text-align: center;
    margin-top: 12px;
}
.oichat-form-container .oichat-forgot a {
    color: #006799;
    text-decoration: none;
    font-size: 14px;
}

/* Profile further design refinements */
.oichat-profile.card {
    border: 1px solid #e0e0e0;
}
.oichat-header {
    border-bottom: 1px solid #e0e0e0;
}
.oichat-contact {
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
    margin-top: 15px;
}


/* Profile Title */
.oichat-page-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
    color: #264653;
}

/* Logout Button */
.oichat-logout {
    background: #e63946;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}
.oichat-logout:hover {
    background: #d62828;
}


/* Profile wrapper full width */
.oichat-profile-wrapper { width: 100%; max-width: 1000px; margin: 0 auto; padding: 20px; }
.oichat-logout { background: #e63946; }
.oichat-logout:hover { background: #ab2b32; }
