﻿/* Padroes globais da aplicacao */
.field{
    margin-bottom:18px;
}

.field input,
.field select,
.field textarea{
    width:100%;
    padding:15px;
    border:1px solid #DDD;
    border-radius:12px;
}

.field input,
.field select{
    height:52px;
}

.field textarea{
    min-height:120px;
    resize:vertical;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea{
    border-color:#E84E5E;
    background:#FFF5F6;
}

.field-error{
    display:block;
    margin-top:6px;
    font-size:12px;
    line-height:1.35;
    color:#D63B4D;
}

.form-alert{
    width:min(100%,430px);
    margin:0 auto 12px;
    padding:10px 12px;
    border-radius:8px;
    font-size:13px;
    font-weight:800;
}

.error-alert{
    background:#FFF5F6;
    color:#D63B4D;
    border:1px solid #F3C9CF;
}

.success-alert{
    background:#EAF8EF;
    color:#207A45;
    border:1px solid #BFE6CC;
}

.button-row{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
    margin:12px 0;
}

.btn{
    width:100%;
    min-height:46px;
    border:0;
    border-radius:8px;
    padding:12px 16px;
    font-size:15px;
    font-weight:800;
    color:#FFFFFF;
    text-align:center;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.btn-sm{
    width:auto;
    min-height:36px;
    padding:8px 12px;
    font-size:13px;
}

.button-row .btn{
    flex:1 1 0;
}

.btn.secondary,
.btn.blue{
    background:#2F80ED;
}

.btn.light{
    background:#EEF0F3;
    color:#596575;
}

.btn.danger-dark{
    background:#8E1C2A;
}

.btn.danger{
    background:#E84E5E;
}

.btn.orange{
    background:#F28C28;
}

.btn.success{
    background:#207A45;
}

.btn.muted-blue{
    background:#5F748B;
}

.btn.rounded{
    border-radius:999px;
}

/* Perfil */
.profile-page{
    min-height:100vh;
    background:#F7F8FA;
    padding-bottom:174px;
}

.profile-form{
    width:100%;
    max-width:430px;
    margin:0 auto;
    padding:14px 0;
}

.profile-summary,
.profile-section,
.account-panel,
.profile-save,
.profile-footer{
    max-width:430px;
    margin:0 auto 14px;
}

.profile-summary,
.profile-section,
.account-panel{
    background:#FFFFFF;
    border:1px solid #E6E8EC;
    border-radius:8px;
    padding:16px;
}

.profile-summary{
    display:grid;
    grid-template-columns:96px 1fr auto;
    align-items:center;
    gap:12px;
}

.profile-avatar,
.avatar-thumb{
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#E84E5E;
    color:#FFFFFF;
    font-weight:800;
}

.profile-avatar{
    width:96px;
    height:96px;
    position:relative;
    overflow:hidden;
    cursor:pointer;
}

.avatar-thumb{
    width:111px;
    height:111px;
    flex:0 0 111px;
    position:relative;
    overflow:hidden;
    cursor:pointer;
}

.profile-avatar::after,
.avatar-thumb::after{
    content:"alterar";
    position:absolute;
    left:50%;
    bottom:7px;
    transform:translateX(-50%);
    padding:3px 7px;
    border-radius:999px;
    background:rgba(0,0,0,.58);
    color:#FFFFFF;
    font-size:10px;
    font-weight:800;
    line-height:1;
    opacity:.92;
    pointer-events:none;
}

.profile-avatar:hover,
.avatar-thumb:hover,
.profile-avatar:focus,
.avatar-thumb:focus{
    box-shadow:0 0 0 4px rgba(47,128,237,.22);
    outline:0;
}

.profile-avatar img,
.avatar-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
}

.profile-summary-info strong{
    display:block;
    font-size:19px;
}

.profile-genders{
    font-size:20px;
}

.gender-male,
.male-block h3{
    color:#2F80ED;
}

.gender-female,
.female-block h3{
    color:#E84E8A;
}

.profile-public-id{
    display:flex;
    align-items:center;
    gap:5px;
    font-weight:800;
    color:#4E5968;
}

.pnx-icon{
    width:22px;
    height:22px;
    display:inline-block;
    flex:0 0 auto;
    vertical-align:-5px;
    background:no-repeat center / contain url("data:image/svg+xml,%3Csvg width='128' height='128' viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='gradPhoenix' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23FF7158;stop-opacity:1'/%3E%3Cstop offset='100%25' style='stop-color:%23FD2B7B;stop-opacity:1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 32 20 A 52 52 0 1 0 96 20' fill='none' stroke='%232563EB' stroke-width='8' stroke-linecap='round'/%3E%3Cg transform='translate(14, 10) scale(0.78)'%3E%3Cellipse cx='64' cy='50' rx='14' ry='28' fill='url(%23gradPhoenix)'/%3E%3Ccircle cx='64' cy='18' r='10' fill='url(%23gradPhoenix)'/%3E%3Cpolygon points='50,45 20,25 38,65' fill='url(%23gradPhoenix)'/%3E%3Cpolygon points='78,45 108,25 90,65' fill='url(%23gradPhoenix)'/%3E%3Cpolygon points='58,76 64,105 70,76' fill='%23F6AD55'/%3E%3C/g%3E%3C/svg%3E");
}

.pnx-icon--sm{
    width:18px;
    height:18px;
    vertical-align:-4px;
}

.profile-section h2{
    font-size:19px;
    margin-bottom:14px;
}

.profile-section h3{
    font-size:14px;
    margin:16px 0 10px;
}

.section-title-status{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}

.required-status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:22px;
    padding:3px 8px;
    border-radius:999px;
    font-size:11px;
    font-weight:800;
    white-space:nowrap;
}

.required-status.is-required{
    background:#FFF1F3;
    color:#D63B4D;
}

.required-status.is-ok{
    background:#EAF8EF;
    color:#207A45;
}

.info-text{
    font-size:14px;
    line-height:1.55;
    color:#626D7C;
}

.info-text.strong{
    font-weight:700;
    color:#3E4855;
}

.info-text.highlight{
    padding:12px;
    background:#F1F5FA;
    border-left:4px solid #5F748B;
    border-radius:6px;
}

.warning-text{
    font-size:13px;
    line-height:1.45;
    color:#D63B4D;
}

.upload-box{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:14px;
    background:#3D4148;
    border:2px dashed #FFFFFF;
    border-radius:8px;
    color:#FFFFFF;
    text-align:center;
    font-size:14px;
    overflow:hidden;
}

.upload-box.has-error,
.avatar-current.has-error .avatar-thumb{
    border-color:#E84E5E;
    background:#FFF5F6;
    box-shadow:0 0 0 3px rgba(232,78,94,.18);
}

.upload-box input{
    position:absolute;
    inset:0;
    opacity:0;
    cursor:pointer;
}

.upload-box img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:1;
}

.hidden-file{
    display:none;
}

.upload-box small{
    position:absolute;
    left:10px;
    right:10px;
    bottom:8px;
    padding:5px 8px;
    border-radius:6px;
    background:rgba(0,0,0,.55);
    font-size:12px;
}

.upload-error{
    display:none;
    position:absolute;
    left:10px;
    right:10px;
    top:8px;
    z-index:3;
    padding:5px 8px;
    border-radius:6px;
    background:#FFF5F6;
    color:#D63B4D;
    font-size:12px;
    font-weight:700;
}

.upload-error.is-visible{
    display:block;
}

.avatar-upload-error{
    position:static;
    margin-top:8px;
}

.upload-progress{
    display:none;
    position:absolute;
    left:10px;
    right:10px;
    bottom:38px;
    width:calc(100% - 20px);
    height:8px;
}

.avatar-progress{
    position:static;
    width:100%;
    margin-top:10px;
}

.upload-progress.is-visible{
    display:block;
}

.poster-upload{
    aspect-ratio:16 / 7;
}

.avatar-current{
    display:flex;
    gap:14px;
    align-items:flex-start;
    padding:12px;
    background:#FAFBFC;
    border:1px solid #EEF0F3;
    border-radius:8px;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
}

.field span{
    display:block;
    margin-bottom:7px;
    font-size:13px;
    font-weight:800;
    color:#4C5664;
}

.field input[readonly]{
    background:#F1F3F6;
    color:#596575;
}

.check-list{
    display:grid;
    gap:10px;
}

.check-list label{
    display:flex;
    align-items:center;
    gap:10px;
    min-height:36px;
    font-size:15px;
}

.tag-list{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.tag-check{
    position:relative;
    display:inline-flex;
}

.tag-check input{
    position:absolute;
    opacity:0;
    pointer-events:none;
}

.tag-check span{
    display:inline-flex;
    align-items:center;
    min-height:36px;
    padding:8px 12px;
    border:1px solid #DDE2E8;
    border-radius:999px;
    background:#F7F8FA;
    color:#4C5664;
    font-size:13px;
    font-weight:800;
}

.tag-check input:checked + span{
    border-color:#207A45;
    background:#EAF8EF;
    color:#207A45;
}

.person-block{
    padding:12px;
    border:1px solid #EEF0F3;
    border-radius:8px;
    margin-top:12px;
}

.is-disabled{
    opacity:.45;
}

.preference-list{
    display:grid;
    gap:10px;
}

.preference-list label{
    display:grid;
    grid-template-columns:1fr 132px;
    align-items:center;
    gap:10px;
    font-size:14px;
}

.preference-list select{
    height:42px;
    border:1px solid #DDE2E8;
    border-radius:8px;
    padding:8px;
    font-weight:800;
}

.status-green{
    color:#207A45;
}

.status-red{
    color:#D63B4D;
}

.account-panel{
    background:#FAFBFC;
}

.danger-panel{
    border-color:#F3C9CF;
}

.account-panel p{
    font-size:14px;
    line-height:1.55;
    color:#4C5664;
    margin-bottom:12px;
}

.profile-save{
    display:grid;
    gap:10px;
    padding:8px 14px 16px;
}

.profile-save.fixed-save{
    position:fixed;
    left:50%;
    transform:translateX(-50%);
    bottom:82px;
    z-index:20;
    width:min(100%, 430px);
    max-width:430px;
    grid-template-columns:1fr 1fr;
    padding:10px 14px;
    margin:0;
    background:rgba(255,255,255,.96);
    border-top:1px solid #E3E3E3;
    box-shadow:0 -8px 24px rgba(0,0,0,.08);
}

.profile-save.fixed-save .btn{
    width:100%;
}

.account-actions .btn{
    white-space:normal;
}

.three-actions{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
}

.three-actions .btn{
    min-height:34px;
    padding:7px 5px;
    font-size:10px;
    line-height:1.15;
}

.avatar-crop-overlay{
    position:fixed;
    inset:0;
    z-index:80;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:14px;
    background:rgba(0,0,0,.55);
}

.avatar-crop-panel{
    width:min(95vw,420px);
    display:grid;
    gap:14px;
    padding:16px;
    border-radius:8px;
    background:#FFFFFF;
    box-shadow:0 18px 48px rgba(0,0,0,.24);
}

.avatar-crop-panel strong{
    color:#2F5F7D;
    font-size:18px;
}

.avatar-crop-stage{
    width:100%;
    border-radius:8px;
    overflow:hidden;
    background:#F1F3F6;
}

.avatar-crop-canvas{
    width:100%;
    height:auto;
    border-radius:8px;
    background:#F1F3F6;
    cursor:grab;
    touch-action:none;
}

.avatar-crop-canvas:active{
    cursor:grabbing;
}

.avatar-crop-range span{
    display:block;
    margin-bottom:7px;
    font-size:13px;
    font-weight:800;
    color:#4C5664;
}

.avatar-crop-range input{
    width:100%;
}

.avatar-crop-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
}

.profile-footer{
    padding:14px;
    text-align:center;
    font-size:12px;
    line-height:1.6;
    color:#6D7785;
}

@media (min-width:640px){
    .form-grid{
        grid-template-columns:1fr 1fr;
    }

    .profile-save{
        grid-template-columns:1fr 1fr;
    }
}

/* Amizades */
.friends-page{
    min-height:100vh;
    padding:0 0 82px;
    background:#FFF2F4;
    overflow-x:hidden;
}

.friends-page *{
    box-sizing:border-box;
}

.friends-wrap{
    width:100%;
    max-width:430px;
    margin:0 auto;
    background:#FFF7F8;
    color:#2D2328;
}

.friends-shortcuts{
    display:grid;
    gap:6px;
    padding:8px;
}

.friends-shortcuts a{
    display:flex;
    align-items:center;
    gap:9px;
    min-height:44px;
    padding:8px 12px;
    border:1px solid #FFCAD2;
    border-radius:16px;
    background:#FFFFFF;
    color:#9B1C31;
    font-size:13px;
    font-weight:800;
    text-decoration:none;
    box-shadow:0 3px 10px rgba(255,111,131,.08);
}

.friends-shortcuts__icon{
    width:20px;
    text-align:center;
    font-size:18px;
    font-weight:800;
}

.friends-icon--invite{ color:#6EAC35; }
.friends-icon--request{ color:#3C9EAD; }
.friends-icon--pnx{ color:#FD5068; }
.friends-icon--check{ color:#3FA46A; }
.friends-icon--pin{ color:#D63B4D; }

.friends-invite-page{
    min-height:100vh;
    padding:0 0 82px;
    background:#FFF2F4;
}

.friends-invite-wrap{
    width:100%;
    max-width:430px;
    margin:0 auto;
    color:#2D2328;
}

.friends-invite-header{
    min-height:48px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin:8px;
    padding:8px 12px;
    border-radius:18px;
    background:linear-gradient(135deg,#FF7A8D,#FF856A);
    color:#FFFFFF;
}

.friends-invite-header a{
    color:#FFFFFF;
    font-size:16px;
    text-decoration:none;
}

.friends-invite-header h1{
    margin:0;
    font-size:16px;
    font-weight:900;
    text-transform:uppercase;
}

.friends-invite-alert{
    margin:0 8px 8px;
    padding:10px 12px;
    border:1px solid #FFB5C0;
    border-radius:16px;
    background:#FFFFFF;
    color:#9B1C31;
    font-size:13px;
    font-weight:800;
}

.friends-invite-alert--success{
    border-color:#B8E8C7;
    color:#16883A;
}

.friends-invite-form{
    display:grid;
    gap:8px;
    padding:0 8px;
}

.friends-invite-block{
    display:grid;
    gap:6px;
    padding:10px;
    border:1px solid #FFD1D8;
    border-radius:16px;
    background:#FFFFFF;
    box-shadow:0 2px 8px rgba(253,80,104,.06);
}

.friends-invite-block h2{
    margin:0 0 4px;
    color:#FF6F83;
    font-size:13px;
    text-transform:uppercase;
}

.friends-invite-row{
    display:grid;
    grid-template-columns:132px minmax(0,1fr);
    gap:8px;
    align-items:center;
    min-height:44px;
}

.friends-invite-row span{
    order:1;
    color:#9B1C31;
    font-size:12px;
    font-weight:900;
    text-align:left;
}

.friends-invite-row input,
.friends-invite-row select{
    order:2;
    width:100%;
    min-height:38px;
    border:1px solid #FFB5C0;
    border-radius:14px;
    background:#FFF7F8;
    color:#2D2328;
    font:inherit;
    font-size:14px;
    padding:0 10px;
}

.friends-invite-error{
    display:block;
    margin:-2px 0 2px;
    color:#C21F3A;
    font-size:11px;
    font-weight:800;
}

.friends-invite-channels{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:4px;
}

.friends-invite-channels label{
    min-height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:5px;
    border:1px solid #FF9AAA;
    border-radius:16px;
    background:#FFFFFF;
    color:#9B1C31;
    font-size:12px;
    font-weight:900;
    cursor:pointer;
}

.friends-invite-channels label.is-active{
    background:linear-gradient(135deg,#FF7A8D,#FF856A);
    color:#FFFFFF;
}

.friends-invite-channels input{
    position:absolute;
    opacity:0;
    pointer-events:none;
}

.friends-invite-contact[hidden]{
    display:none;
}

.friends-invite-submit{
    min-height:46px;
    border:0;
    border-radius:16px;
    background:linear-gradient(135deg,#FF7A8D,#FF856A);
    color:#FFFFFF;
    font-size:15px;
    font-weight:900;
    cursor:pointer;
}

.friends-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:48px;
    margin:0 8px 8px;
    padding:8px 12px;
    border:1px solid #FFCAD2;
    border-radius:18px;
    background:#FFFFFF;
    box-shadow:0 3px 10px rgba(255,111,131,.08);
}

.friends-header h1{
    margin:0;
    color:#FF6F83;
    font-size:18px;
    font-weight:900;
}

.friends-header button{
    border:0;
    background:transparent;
    color:#9B1C31;
    font-size:12px;
    font-weight:700;
}

.friends-cert-request{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:8px;
    align-items:center;
    margin:8px;
    padding:8px;
    border:1px solid #FFD1D8;
    border-radius:16px;
    background:#FFFFFF;
}

.friends-cert-request button{
    min-height:36px;
    border:0;
    border-radius:14px;
    background:linear-gradient(135deg,#FF7A8D,#FF856A);
    color:#FFFFFF;
    font-size:12px;
    font-weight:900;
    cursor:pointer;
}

.friends-cert-request span,
.friends-cert-request__error{
    color:#9B1C31;
    font-size:11px;
    font-weight:800;
}

.friends-cert-request__error{
    margin:0 8px 8px;
}

.trust-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:18px;
    height:18px;
    margin-left:4px;
    border-radius:999px;
    color:#FFFFFF;
    font-size:11px;
    font-weight:900;
    line-height:1;
    vertical-align:middle;
}

.trust-badge--cert{
    background:#2F80ED;
}

.trust-badge--diploma{
    background:#12A150;
}

.public-profile__certifiers{
    display:flex;
    flex-wrap:wrap;
    gap:5px;
    justify-content:center;
}

.public-profile__certifiers a{
    padding:3px 7px;
    border-radius:999px;
    background:#EAF4FF;
    color:#477A9C;
    font-size:11px;
    font-weight:800;
    text-decoration:none;
}

.friends-tabs{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:2px;
    margin:0 8px 8px;
}

.friends-tabs button{
    min-height:36px;
    border:1px solid #FFCAD2;
    border-radius:14px;
    background:#FFFFFF;
    color:#9B1C31;
    font-size:12px;
    font-weight:800;
    cursor:pointer;
}

.friends-tabs button:last-child{
    border-right:1px solid #FFCAD2;
}

.friends-tabs .is-active{
    background:linear-gradient(135deg,#FF7A8D,#FF856A);
    color:#FFFFFF;
    font-weight:800;
}

.friends-social-note{
    margin:0 8px 8px;
    min-height:30px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#FF7158,#FD2B7B);
    color:#FFFFFF;
    font-size:12px;
    font-weight:800;
    box-shadow:0 6px 14px rgba(253,43,123,.16);
}

.friends-list{
    display:grid;
    gap:7px;
    padding:0 8px;
}

.friend-row{
    min-height:66px;
    display:flex;
    align-items:center;
    gap:8px;
    padding:8px;
    border:1px solid #FFCAD2;
    border-radius:18px;
    background:#FFFFFF;
    color:#2D2328;
    text-decoration:none;
    box-shadow:0 3px 10px rgba(255,111,131,.08);
}

.friend-row__link{
    min-width:0;
    flex:1;
    display:flex;
    align-items:center;
    gap:8px;
    color:inherit;
    text-decoration:none;
}

.friend-row[hidden]{
    display:none;
}

.friend-row__avatar{
    position:relative;
    width:42px;
    height:42px;
    flex:0 0 42px;
    border-radius:50%;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#E84E5E;
    color:#FFFFFF;
    font-weight:900;
}

.friend-row__avatar::after{
    content:"";
    position:absolute;
    right:0;
    bottom:1px;
    width:9px;
    height:9px;
    border:2px solid #FFFFFF;
    border-radius:50%;
    background:#2FCB68;
}

.friend-row__avatar img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:2;
}

.friend-row__avatar span{
    position:relative;
    z-index:1;
}

.friend-row__body{
    min-width:0;
    flex:1;
    display:grid;
    gap:1px;
}

.friend-row__body strong{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    color:#9B1C31;
    font-size:14px;
}

.friend-row__gender{
    color:#FF6F83;
}

.friend-row__body small{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    color:#667985;
    font-size:11px;
}

.friend-kind{
    font-size:12px;
    font-style:normal;
    font-weight:800;
}

.friend-kind--virtual{
    color:#9B1C31;
}

.friend-kind--real,
.friend-kind--gps{
    color:#FD2B7B;
}

.friend-row__arrow{
    flex:0 0 auto;
    color:#C7CED6;
    font-size:30px;
    line-height:1;
}

.friend-row__cert-form{
    flex:0 0 auto;
    margin:0;
}

.friend-row__cert-form button{
    max-width:96px;
    min-height:28px;
    border:0;
    border-radius:14px;
    padding:4px 8px;
    background:linear-gradient(135deg,#FF7158,#FD2B7B);
    color:#FFFFFF;
    font-size:10px;
    font-weight:900;
    line-height:1.1;
    cursor:pointer;
}

.friend-row__cert-form button.is-pending{
    border:1px solid #FFD1D8;
    background:#FFF2F4;
    color:#9B1C31;
}

.friend-row__cert-ok{
    flex:0 0 auto;
    border-radius:999px;
    padding:5px 8px;
    background:#E9F8EF;
    color:#168143;
    font-size:10px;
    font-weight:900;
}

.friends-more{
    width:calc(100% - 16px);
    min-height:38px;
    margin:8px;
    border:1px solid #FFCAD2;
    border-radius:16px;
    background:#FFFFFF;
    color:#9B1C31;
    font-size:12px;
    font-weight:800;
}

.friends-stats{
    margin:0 8px 12px;
    padding:10px 12px 18px;
    border:1px solid #FFCAD2;
    border-radius:18px;
    background:#FFFFFF;
    color:#5F4A50;
    font-size:11px;
    line-height:1.4;
    box-shadow:0 3px 10px rgba(255,111,131,.08);
}

.friends-stats strong{
    display:block;
    margin-bottom:5px;
}

.friends-stats div{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:2px 10px;
    margin-bottom:10px;
}

.friends-stats p{
    margin:0;
    color:#6D7785;
}

/* Paqueras e certificacoes */
.paqueras-page{
    min-height:100vh;
    padding:0 8px 92px;
    background:#FFF2F4;
}

.paqueras-wrap{
    width:100%;
    max-width:430px;
    margin:0 auto;
    color:#2D2328;
}

.paqueras-bar{
    min-height:48px;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:8px;
    margin:0 0 8px;
    padding:8px 12px;
    border-radius:18px;
    background:linear-gradient(135deg,#FF7A8D,#FF856A);
    color:#FFFFFF;
    box-shadow:0 8px 18px rgba(255,122,141,.18);
}

.paqueras-bar a{
    color:inherit;
    font-size:15px;
    text-decoration:none;
}

.paqueras-bar h1{
    margin:0;
    font-size:16px;
    font-weight:900;
    letter-spacing:0;
    text-align:center;
    white-space:nowrap;
}

.paqueras-tabs{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:2px;
    margin:0 0 8px;
}

.certification-tabs{
    grid-template-columns:repeat(3,minmax(0,1fr));
}

.paqueras-tabs a{
    min-height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #FFCAD2;
    border-radius:14px;
    background:#FFFFFF;
    color:#9B1C31;
    font-size:13px;
    font-weight:800;
    text-align:center;
    text-decoration:none;
}

.paqueras-tabs a.is-active{
    background:linear-gradient(135deg,#FF7A8D,#FF856A);
    color:#FFFFFF;
}

.paqueras-list{
    display:grid;
    gap:8px;
}

.paquera-card{
    min-height:74px;
    display:grid;
    grid-template-columns:56px minmax(0,1fr) auto 14px;
    align-items:center;
    gap:8px;
    padding:9px 10px;
    border:1px solid #FFCAD2;
    border-radius:18px;
    background:#FFFFFF;
    color:inherit;
    text-decoration:none;
    box-shadow:0 3px 10px rgba(255,111,131,.08);
}

.paquera-card__avatar{
    position:relative;
    width:52px;
    height:52px;
    border-radius:50%;
    overflow:hidden;
    background:#E84E5E;
    color:#FFFFFF;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    text-decoration:none;
}

.paquera-card__avatar img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.paquera-card__online{
    position:absolute;
    right:1px;
    bottom:1px;
    z-index:2;
    width:12px;
    height:12px;
    border:2px solid #FFFFFF;
    border-radius:50%;
    background:#21C35B;
}

.paquera-card__name{
    display:block;
    overflow:hidden;
    color:#9B1C31;
    font-size:17px;
    font-weight:900;
    line-height:1.15;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.paquera-card__status{
    color:#FD2B7B;
    font-size:14px;
    font-weight:800;
    line-height:1.2;
}

.paquera-card__hearts{
    color:#FD2B7B;
    font-size:28px;
    font-weight:900;
    white-space:nowrap;
}

.paquera-card__arrow{
    color:#C7CDD4;
    font-size:30px;
    text-decoration:none;
}

.paqueras-empty{
    padding:16px;
    border:1px solid #FFCAD2;
    border-radius:18px;
    background:#FFFFFF;
    color:#9B1C31;
    font-weight:800;
    text-align:center;
}

.certification-card__body{
    min-width:0;
    display:grid;
    gap:2px;
    color:inherit;
    text-decoration:none;
}

.certification-card__body small{
    overflow:hidden;
    color:#667985;
    font-size:11px;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.certification-card__actions{
    display:grid;
    gap:4px;
}

.certification-card__actions form{
    margin:0;
}

.certification-card__actions button{
    min-width:72px;
    min-height:28px;
    border:0;
    border-radius:12px;
    padding:4px 8px;
    background:linear-gradient(135deg,#FF7158,#FD2B7B);
    color:#FFFFFF;
    font-size:11px;
    font-weight:900;
    cursor:pointer;
}

.certification-card__actions button.is-muted{
    border:1px solid #FFD1D8;
    background:#FFF2F4;
    color:#9B1C31;
}

.module-titlebar{
    min-height:50px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin:8px 8px 10px;
    padding:9px 12px;
    border-radius:6px;
    background:#477A9C;
    color:#FFFFFF;
}

.module-titlebar a{
    color:#FFFFFF;
    text-decoration:none;
    font-size:14px;
}

.module-titlebar strong{
    margin-left:auto;
    color:#DDECF5;
    font-size:15px;
    text-align:right;
}

.module-titlebar__avatar{
    width:36px;
    height:36px;
    flex:0 0 36px;
    border-radius:50%;
    overflow:hidden;
    background:#DDECF5;
}

.module-titlebar__avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.friends-eval-intro{
    padding:10px 12px;
    border-bottom:1px solid #E6E8EC;
    color:#667985;
    text-align:center;
    font-size:11px;
}

.friends-eval-intro p{
    margin:0;
}

.friends-eval-intro strong{
    display:block;
    color:#4C5664;
}

.friends-eval-tabs{
    display:grid;
    grid-template-columns:1fr 1fr;
    border-bottom:1px solid #DDE2E8;
}

.friends-eval-tabs a{
    min-height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-right:1px solid #E6E8EC;
    color:#477A9C;
    text-decoration:none;
    font-size:12px;
}

.friends-eval-tabs a:last-child{
    border-right:0;
}

.friends-eval-tabs .is-active{
    color:#26323D;
    font-weight:800;
}

.friend-eval-dot,
.friend-eval-dot--hot{
    width:7px;
    height:7px;
    display:inline-block;
    border-radius:50%;
    vertical-align:middle;
    background:#22B95B;
}

.friend-eval-dot--hot{
    background:#E84E5E;
}

.friends-eval-empty{
    margin:0;
    padding:18px 12px;
    color:#7A8790;
    text-align:center;
    font-size:13px;
}

.friends-eval-warning{
    margin:0;
    padding:12px;
    color:#B00000;
    text-align:center;
    font-size:12px;
    font-weight:800;
}

.friends-eval-form{
    padding-bottom:18px;
}

.friends-eval-section{
    border-top:1px solid #DDE2E8;
}

.friends-eval-section header{
    padding:8px 10px;
    background:#F1F3F5;
    color:#4C5664;
    font-size:12px;
}

.friends-eval-section header strong{
    color:#4C5664;
}

.friends-eval-section header span,
.friends-eval-section header small{
    display:block;
    color:#667985;
    font-size:10px;
}

.friends-eval-section__blue strong{
    color:#2E7FA4 !important;
}

.friends-eval-section__pink strong{
    color:#D647BC !important;
}

.friends-eval-option{
    min-height:52px;
    display:grid;
    grid-template-columns:22px 24px 1fr;
    align-items:center;
    gap:4px;
    padding:8px 10px;
    border-bottom:1px solid #E6E8EC;
    cursor:pointer;
}

.friends-eval-option input{
    width:18px;
    height:18px;
}

.friends-eval-option strong{
    color:#26323D;
    font-size:14px;
}

.friends-eval-option small{
    grid-column:3;
    margin-top:-6px;
    color:#7A8790;
    font-size:10px;
}

.friends-eval-submit{
    padding:12px 10px;
}

.friends-eval-submit button{
    width:100%;
    min-height:42px;
    border:0;
    border-radius:999px;
    background:#477A9C;
    color:#FFFFFF;
    font-weight:800;
    cursor:pointer;
}

/* Perfil publico */
.public-profile{
    min-height:100vh;
    padding:0 0 74px;
    background:#F7F8FA;
    overflow-x:hidden;
}

.public-profile *{
    box-sizing:border-box;
}

.public-profile__wrap{
    width:100%;
    max-width:430px;
    margin:0 auto;
    background:#FFFFFF;
    color:#26323D;
}

.public-profile__bar{
    min-height:42px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin:8px 8px 0;
    padding:8px 12px;
    border-radius:6px;
    background:#477A9C;
    color:#FFFFFF;
    font-size:13px;
}

.public-profile__bar a{
    color:#FFFFFF;
    text-decoration:none;
}

.public-profile__cover{
    position:relative;
    height:142px;
    margin-top:8px;
    background:#DDE2E8 center/cover no-repeat;
}

.public-profile__cover::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.18));
    pointer-events:none;
}

.public-profile__avatar{
    position:absolute;
    left:50%;
    bottom:-36px;
    transform:translateX(-50%);
    width:86px;
    height:86px;
    border:3px solid #FFFFFF;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#E84E5E;
    color:#FFFFFF;
    font-size:28px;
    font-weight:900;
    box-shadow:0 4px 12px rgba(0,0,0,.16);
    z-index:2;
}

.public-profile__avatar img{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover;
}

.public-profile__avatar span{
    position:absolute;
    right:4px;
    bottom:4px;
    width:14px;
    height:14px;
    border:2px solid #FFFFFF;
    border-radius:50%;
    background:#2FCB68;
}

.public-profile__identity{
    padding:42px 10px 10px;
    text-align:center;
    border-bottom:1px solid #E6E8EC;
}

.public-profile__identity h1{
    margin:0 0 2px;
    color:#2E7FA4;
    font-size:20px;
}

.public-profile__identity h1 span{
    color:#2F80ED;
    margin-right:4px;
}

.public-profile__identity p{
    margin:1px 0;
    font-size:12px;
    color:#667985;
}

.public-profile__online{
    color:#0BAA43 !important;
    font-weight:800;
}

.public-profile__error{
    display:block;
    margin:4px auto 6px !important;
    padding:6px 8px;
    border:1px solid #E84E5E;
    border-radius:6px;
    background:#FFF1F3;
    color:#B00000 !important;
    font-size:11px !important;
    font-weight:800;
}

.public-profile__badges{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:5px;
    margin-top:8px;
}

.public-profile__badges span,
.public-profile__badges a{
    min-height:22px;
    padding:4px 8px;
    border-radius:999px;
    background:#EEF6FB;
    color:#477A9C;
    font-size:11px;
    text-decoration:none;
    font-weight:800;
}

.public-profile__badges .public-profile__badge--green{
    background:#EAF8EC;
    color:#178D34;
}

.public-profile__badges .public-profile__badge--blue{
    background:#EAF4FA;
    color:#2E7FA4;
}

.public-profile__badges .public-profile__badge--soft{
    background:#F0F6FA;
    color:#477A9C;
}

.public-profile__badges .is-hot{
    background:#FFF1F6;
    color:#E90057;
}

.public-profile__ratings{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:5px;
    margin-top:7px;
}

.public-profile__ratings span{
    min-height:22px;
    padding:4px 8px;
    border-radius:999px;
    background:#FFF4D6;
    color:#B87911;
    font-size:11px;
    font-weight:800;
}

.public-profile__ratings--individual span{
    background:#F2F7FF;
    color:#477A9C;
}

.public-profile__quick-links{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    margin-top:8px;
}

.public-profile__quick-links a{
    min-height:22px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:4px 9px;
    border-radius:999px;
    background:#EEF6FB;
    color:#477A9C;
    font-size:10px;
    font-weight:800;
    text-decoration:none;
}

.public-profile__quick-links a:nth-child(2){
    background:#F2F7FF;
}

.public-profile__quick-links a:nth-child(3){
    background:#FFF1F6;
    color:#E90057;
}

.public-profile__trust-actions{
    display:grid;
    gap:8px;
    justify-items:center;
    margin:14px auto 2px;
    max-width:340px;
}

.public-profile__trust-actions p{
    margin:0;
    color:#9B0000;
    font-size:18px;
    font-weight:500;
    text-align:center;
}

.public-profile__trust-actions form{
    width:100%;
    margin:0;
}

.public-profile__trust-button{
    width:100%;
    min-height:44px;
    border:0;
    border-radius:999px;
    color:#FFFFFF;
    font-size:16px;
    font-weight:900;
    text-transform:uppercase;
    cursor:pointer;
}

.public-profile__trust-button--cert{
    background:linear-gradient(135deg,#FF7158,#FD2B7B);
}

.public-profile__trust-button--sponsor{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:#209B00;
}

.public-profile__poly-list{
    display:grid;
    gap:4px;
    margin:8px auto 0;
    max-width:320px;
}

.public-profile__poly-list a{
    min-height:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:4px 8px;
    border-radius:999px;
    background:#F7ECFF;
    color:#8A279F;
    font-size:10px;
    font-weight:800;
    text-decoration:none;
}

.public-profile__actions{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:6px 4px;
    padding:12px 6px 10px;
    border-bottom:1px solid #E6E8EC;
}

/* Poliamor */
.poliamor-profile-bar{
    min-height:54px;
    display:grid;
    grid-template-columns:auto 1fr 54px;
    align-items:center;
    gap:10px;
    background:#477A9C;
    color:#DDECF5;
}

.poliamor-profile-bar a{
    padding-left:12px;
    color:#FFFFFF;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
}

.poliamor-profile-bar strong{
    overflow:hidden;
    text-align:right;
    white-space:nowrap;
    text-overflow:ellipsis;
    font-size:18px;
    font-weight:800;
}

.poliamor-profile-bar span{
    width:54px;
    height:54px;
    overflow:hidden;
    background:#DDE2E8;
}

.poliamor-profile-bar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.poliamor-hero{
    padding:34px 18px 28px;
    border-bottom:1px solid #DDE2E8;
    text-align:center;
    color:#4C5664;
}

.poliamor-hero__icon{
    color:#7B2497;
    font-size:70px;
    line-height:.85;
    font-weight:900;
    text-shadow:0 2px 6px rgba(80,0,100,.25);
}

.poliamor-hero h2{
    margin:10px 0 20px;
    color:#8A279F;
    font-size:28px;
    font-weight:900;
}

.poliamor-hero p{
    max-width:360px;
    margin:0 auto 20px;
    font-size:15px;
    line-height:1.35;
}

.poliamor-hero p:last-child{
    margin-bottom:0;
    font-weight:800;
}

.poliamor-requests-link{
    padding:12px 14px;
    border-bottom:1px solid #DDE2E8;
    text-align:center;
}

.poliamor-requests-link a{
    width:100%;
    min-height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:#477A9C;
    color:#FFFFFF;
    font-size:14px;
    font-weight:900;
    text-decoration:none;
}

.poliamor-form__section{
    border-bottom:1px solid #DDE2E8;
}

.poliamor-form__section h2{
    margin:0;
    padding:9px 14px;
    background:#F1F3F5;
    color:#5C646D;
    font-size:13px;
    font-weight:800;
}

.poliamor-option{
    min-height:74px;
    display:grid;
    grid-template-columns:28px 34px 1fr;
    align-items:center;
    gap:2px 4px;
    padding:10px 14px;
    border-bottom:1px solid #E6E8EC;
    cursor:pointer;
}

.poliamor-option input{
    width:22px;
    height:22px;
}

.poliamor-option > span{
    font-size:22px;
    text-align:center;
}

.poliamor-option strong{
    color:#111827;
    font-size:20px;
    line-height:1.1;
}

.poliamor-option small{
    grid-column:2 / 4;
    margin-top:-4px;
    color:#7A8790;
    font-size:14px;
}

.poliamor-form select{
    width:100%;
    min-height:58px;
    border:0;
    border-bottom:1px solid #DDE2E8;
    background:#FFFFFF;
    color:#26323D;
    padding:0 16px;
    font-size:19px;
}

.poliamor-form__submit{
    padding:18px 14px 22px;
}

.poliamor-form__submit button{
    width:100%;
    min-height:50px;
    border:0;
    border-radius:999px;
    background:#477A9C;
    color:#FFFFFF;
    font-size:18px;
    font-weight:900;
}

.poliamor-status{
    margin:0;
    padding:16px;
    color:#477A9C;
    text-align:center;
    font-size:14px;
    font-weight:800;
}

.poliamor-status--ok{
    color:#178D34;
}

.public-profile__actions form{
    display:contents;
}

.public-profile__actions button,
.public-profile__actions a{
    min-height:52px;
    border:0;
    background:transparent;
    color:#477A9C;
    display:grid;
    gap:2px;
    place-items:center;
    font-size:22px;
    text-decoration:none;
    border-radius:8px;
}

.public-profile__actions span{
    color:#26323D;
    font-size:10px;
    font-weight:700;
}

.public-profile__actions .is-active{
    color:#178D34;
}

.public-profile__actions .is-active span{
    color:#178D34;
    font-weight:800;
}

.public-profile__actions .is-virtual{
    color:#477A9C;
}

.public-profile__actions .is-virtual span{
    color:#477A9C;
}

.public-profile__actions .is-real,
.public-profile__actions .is-gps{
    color:#178D34;
}

.public-profile__action-flirt,
.public-profile__action-favorite{
    font-size:28px !important;
}

.public-profile__action-flirt.is-active,
.public-profile__action-flirt.is-active span{
    color:#E90057;
}

.public-profile__action-favorite.is-active,
.public-profile__action-favorite.is-active span,
.public-profile__action-follow.is-active,
.public-profile__action-follow.is-active span{
    color:#178D34;
}

.public-profile__actions .is-danger-active,
.public-profile__actions .is-danger-active span,
.public-profile-modal__box .is-danger-active{
    color:#B00000;
    font-weight:900;
}

.public-profile__actions button:disabled{
    opacity:.45;
}

.public-profile__numbers{
    display:grid;
    grid-template-columns:1fr 1fr;
    border-bottom:1px solid #E6E8EC;
}

.public-profile__numbers span{
    min-height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-right:1px solid #EEF0F3;
    border-bottom:1px solid #EEF0F3;
    color:#4C5664;
    font-size:11px;
}

.public-profile__numbers a{
    color:inherit;
    font-size:inherit;
    text-decoration:none;
}

.public-profile__info,
.public-profile__details,
.public-profile__gallery,
.public-profile__proposal,
.public-profile__visits{
    padding:12px 10px;
    border-bottom:1px solid #E6E8EC;
    text-align:center;
}

.public-profile__info h2,
.public-profile__details h2,
.public-profile__gallery h2,
.public-profile__proposal h2,
.public-profile__visits h2{
    margin:0 0 8px;
    color:#667985;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
}

.public-profile__gallery h2 a{
    color:inherit;
    text-decoration:none;
}

.public-profile__info strong{
    display:inline-flex;
    padding:6px 14px;
    border-radius:999px;
    background:#F2F3F5;
    color:#7A8790;
    font-size:16px;
}

.public-profile__crs-card{
    background:#FFFFFF;
}

.public-profile__crs-code{
    align-items:center;
    gap:5px;
    background:#FFF4D6 !important;
    color:#B87911 !important;
    font-weight:900;
}

.public-profile__crs-code span{
    color:#D6A11D;
}

.public-profile__crs-lines{
    max-width:260px;
    margin:8px auto 0;
    padding:6px 8px;
    border-radius:6px;
    background:#FAFBFC;
    color:#667985;
}

.public-profile__info p,
.public-profile__proposal p{
    margin:3px 0;
    font-size:12px;
    color:#4C5664;
}

.public-profile__info b{
    color:#D63B4D;
}

.public-profile__info h3{
    margin:12px 0 5px;
    font-size:12px;
}

.public-profile__details dl{
    display:grid;
    grid-template-columns:1fr 1fr;
    max-width:250px;
    margin:0 auto 8px;
    gap:3px 10px;
    font-size:11px;
}

.public-profile__details dt{
    text-align:right;
    font-weight:800;
}

.public-profile__details dd{
    margin:0;
    text-align:left;
}

.public-profile__details a,
.public-profile__proposal a,
.public-profile__toggle summary{
    color:#2E7FA4;
    font-size:12px;
    font-weight:800;
    text-decoration:none;
    cursor:pointer;
}

.public-profile__toggle{
    margin:2px 0 10px;
}

.public-profile__toggle summary{
    list-style:none;
}

.public-profile__toggle summary::-webkit-details-marker{
    display:none;
}

.public-profile__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:4px;
    text-decoration:none;
}

.public-profile__grid a,
.public-profile__empty-photo{
    aspect-ratio:1/1;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:#EEF0F3;
    color:#B0B8C2;
    font-size:10px;
    font-weight:800;
    text-align:center;
}

.public-profile__grid img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.public-profile__grid--private{
    grid-template-columns:repeat(4,1fr);
}

.public-profile__visits div{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:5px;
    max-height:66px;
    overflow:hidden;
}

.public-profile__visits div.is-expanded{
    max-height:none;
}

.public-profile__visits a{
    display:inline-flex;
    align-items:center;
    gap:3px;
    padding:2px 6px;
    border-radius:3px;
    background:#EEF6FB;
    color:#477A9C;
    font-size:10px;
    font-weight:800;
    text-decoration:none;
}

.public-profile__visits small{
    color:#E84E8A;
}

.public-profile__empty-text{
    margin:6px 0 0;
    color:#7B8794;
    text-align:center;
    font-size:12px;
}

.public-profile__more{
    width:100%;
    min-height:38px;
    border:0;
    background:#F7F8FA;
    color:#477A9C;
    font-size:12px;
    font-weight:800;
}

.public-profile-modal-open{
    overflow:hidden;
}

.public-profile-modal{
    position:fixed;
    inset:0;
    z-index:999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:18px;
    background:rgba(0,0,0,.34);
}

.public-profile-modal[hidden]{
    display:none;
}

.public-profile-modal__box{
    width:min(92vw,360px);
    overflow:hidden;
    border-radius:18px;
    background:#FFFFFF;
    color:#30363D;
    text-align:center;
    box-shadow:0 12px 34px rgba(0,0,0,.22);
}

.public-profile-modal__box h2{
    margin:0;
    padding:24px 18px 10px;
    font-size:28px;
    line-height:1.1;
}

.public-profile-modal__box p{
    margin:0;
    padding:14px 24px 26px;
    font-size:20px;
    line-height:1.25;
}

.public-profile-modal__box button{
    width:100%;
    min-height:68px;
    border:0;
    border-top:1px solid #DDE2E8;
    background:#FFFFFF;
    color:#477A9C;
    font-size:24px;
    font-weight:700;
}

.public-profile-modal__box button[data-friend-choice="real_gps"],
.public-profile-modal__box button[data-friend-choice="real"]{
    color:#00A51A;
}

.public-profile-modal__box--note{
    padding:14px;
}

.public-profile-modal__box--note textarea{
    width:100%;
    min-height:150px;
    resize:vertical;
    border:1px solid #DDE2E8;
    padding:12px;
    font:inherit;
}

.fotolog-profile-link,
.fotolog-post__name{
    color:inherit;
    text-decoration:none;
}

.profile-gender-symbol{
    display:inline-block;
    margin-right:4px;
    color:#2E7FA4;
    font-weight:800;
}

.admin-list{
    min-height:100vh;
    padding:0 0 74px;
    background:#F7F8FA;
}

.admin-list__wrap{
    width:100%;
    max-width:430px;
    margin:0 auto;
    background:#FFFFFF;
}

.admin-list__header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:38px;
    padding:8px 10px;
    background:#477A9C;
    color:#FFFFFF;
}

.admin-list__header a{
    color:#FFFFFF;
    text-decoration:none;
    font-size:12px;
}

.admin-list__header h1{
    margin:0;
    font-size:15px;
}

.admin-list__empty{
    margin:0;
    padding:18px 12px;
    color:#667985;
    text-align:center;
}

.admin-list__card{
    display:grid;
    gap:5px;
    padding:12px;
    border-bottom:1px solid #E6E8EC;
    color:#26323D;
}

.admin-list__card strong{
    color:#2E7FA4;
}

.admin-list__card span,
.admin-list__card p{
    margin:0;
    font-size:12px;
}

.admin-list__actions{
    display:flex;
    gap:8px;
    margin-top:6px;
}

.admin-list__actions form{
    flex:1;
}

.admin-list__actions button{
    width:100%;
    min-height:34px;
    border:0;
    border-radius:999px;
    background:#D9E4EC;
    color:#2F5F7D;
    font-weight:800;
}

.admin-list__actions .admin-list__danger{
    background:#B00000;
    color:#FFFFFF;
}

.chat-page{
    min-height:100vh;
    padding:0 0 74px;
    background:#F7F8FA;
}

.chat-page--conversation{
    padding-bottom:150px;
    background:#FFFFFF;
}

.chat-page__wrap{
    width:100%;
    max-width:430px;
    margin:0 auto;
    background:#FFFFFF;
    color:#26323D;
}

.chat-page__header,
.chat-conversation__header{
    min-height:46px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:7px 12px;
    border-bottom:1px solid #DDE2E8;
    background:#FFFFFF;
}

.chat-page__header h1{
    margin:0;
    font-size:20px;
    font-weight:500;
}

.chat-page__header a,
.chat-conversation__header a{
    color:#477A9C;
    text-decoration:none;
}

.chat-tabs{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-bottom:1px solid #DDE2E8;
}

.chat-tabs a,
.chat-tabs span{
    min-height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#477A9C;
    text-decoration:none;
    font-size:13px;
}

.chat-tabs .is-active{
    border-bottom:2px solid #26323D;
    color:#26323D;
}

.chat-list__item{
    display:grid;
    grid-template-columns:48px 1fr auto;
    gap:9px;
    padding:9px 10px;
    border-bottom:1px solid #E6E8EC;
    color:inherit;
    text-decoration:none;
}

.chat-list__avatar,
.chat-conversation__profile i{
    position:relative;
    width:44px;
    height:44px;
    border-radius:50%;
    overflow:hidden;
    background:#D9E4EC;
}

.chat-list__avatar img,
.chat-conversation__profile img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.chat-list__avatar i{
    position:absolute;
    right:1px;
    bottom:1px;
    width:10px;
    height:10px;
    border:2px solid #FFFFFF;
    border-radius:50%;
    background:#28C76F;
}

.chat-list__body{
    min-width:0;
    display:grid;
    gap:1px;
}

.chat-list__body strong{
    color:#2E7FA4;
    font-size:16px;
}

.chat-list__body small,
.chat-list__date{
    color:#6D7785;
    font-size:11px;
}

.chat-list__side{
    display:grid;
    gap:4px;
    justify-items:end;
}

.chat-list__side form{
    margin:0;
}

.chat-list__side button{
    border:0;
    background:transparent;
    color:#477A9C;
    font-size:10px;
    font-weight:800;
}

.chat-list__body em{
    overflow:hidden;
    color:#4C5664;
    font-size:14px;
    font-style:normal;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.chat-page__more{
    width:100%;
    min-height:42px;
    border:0;
    background:#F7F8FA;
    color:#477A9C;
    font-weight:800;
}

.chat-conversation__profile{
    display:flex;
    align-items:center;
    gap:8px;
    text-align:right;
}

.chat-conversation__profile span{
    display:grid;
}

.chat-conversation__profile b{
    color:#2E7FA4;
    font-size:16px;
}

.chat-conversation__profile small{
    color:#6D7785;
}

.chat-thread{
    min-height:calc(100vh - 174px);
    padding:8px 10px 84px;
}

.chat-bubble{
    width:max-content;
    max-width:78%;
    margin:7px 0;
    padding:9px 12px;
    border-radius:6px;
    background:#F5F5F5;
}

.chat-bubble.is-mine{
    margin-left:auto;
    background:#DDEEF8;
}

.chat-bubble.is-uploading{
    opacity:.78;
}

.chat-bubble p{
    margin:0 0 3px;
    font-size:22px;
    line-height:1.2;
}

.chat-bubble strong{
    color:#D24BC3;
}

.chat-bubble small{
    display:flex;
    gap:5px;
    align-items:center;
    color:#6D7785;
    font-size:13px;
}

.chat-bubble button{
    border:0;
    background:transparent;
    color:#B00000;
    font:inherit;
}

.chat-bubble small span{
    color:#2E9BDE;
    font-weight:900;
}

.chat-bubble__image{
    display:block;
    max-width:100%;
    max-height:260px;
    margin:5px 0;
    border-radius:6px;
    object-fit:cover;
}

.chat-bubble__audio{
    display:block;
    width:240px;
    max-width:100%;
    margin:5px 0;
}

.chat-report{
    display:block;
    padding:8px 14px;
    border-top:1px solid #E6E8EC;
    color:#6D7785;
    text-decoration:underline;
}

.chat-error{
    margin:6px 0 10px;
    padding:8px 10px;
    border:1px solid #E84E5E;
    border-radius:6px;
    background:#FFF1F3;
    color:#B00000;
    font-size:12px;
    font-weight:800;
}

.chat-compose{
    position:fixed;
    left:50%;
    bottom:74px;
    z-index:19;
    width:min(100%,430px);
    transform:translateX(-50%);
    display:grid;
    grid-template-columns:42px 1fr 42px;
    gap:8px;
    align-items:center;
    padding:14px 12px;
    border-top:1px solid #DDE2E8;
    background:#FFFFFF;
}

.chat-compose button,
.chat-compose label{
    border:0;
    background:transparent;
    color:#477A9C;
    font-size:26px;
    text-align:center;
}

.chat-compose label{
    cursor:pointer;
}

.chat-compose label input{
    display:none;
}

.chat-compose input{
    min-height:42px;
    border:0;
    border-radius:999px;
    padding:0 18px;
    background:#F0F2F5;
    font-size:18px;
}

.admin-message-form{
    display:grid;
    gap:10px;
    margin-top:10px;
}

.admin-message-form label{
    display:grid;
    gap:5px;
    color:#5E6268;
    font-size:13px;
    font-weight:800;
}

.admin-message-form input,
.admin-message-form select,
.admin-message-form textarea{
    width:100%;
    border:1px solid #DDE2E8;
    border-radius:6px;
    padding:9px;
    background:#FFFFFF;
    color:#26323D;
    font:inherit;
}

.admin-moderation-card h2{
    margin:12px 0 4px;
    color:#477A9C;
    font-size:14px;
}

.admin-list__actions--grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:6px;
}

.admin-list__actions--grid button{
    width:100%;
    min-height:34px;
    padding:6px;
    font-size:11px;
}

