/* Fake WhatsApp Chat Generator */

.wa-tool {
    display: grid;
    grid-template-columns: minmax(280px, 680px) 1fr;
    gap: 1.5rem;
    align-items: start;
}

.wa-panel {
    background: #fff;
    border: 1px solid var(--primary-color-light);
    border-radius: 12px;
    overflow: hidden;
}

.wa-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--primary-light-background);
    border-bottom: 1px solid var(--primary-color-light);
}

.wa-panel__header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-text-color);
}

.wa-panel__body {
    padding: 10px 20px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.wa-disclaimer {
    background: #fff8e6;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    color: #92400e;
    line-height: 1.5;
}

.wa-field {
    margin-bottom: 1rem;
}

.wa-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-text-color);
    margin-bottom: 0.35rem;
}

.wa-field input[type="text"],
.wa-field input[type="time"],
.wa-field input[type="date"],
.wa-field input[type="number"],
.wa-field select,
.wa-field textarea {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.2s;
}

.wa-field input:focus,
.wa-field select:focus,
.wa-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.wa-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.wa-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.wa-profile__fields {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: row;
    gap: 0.65rem;
}

.wa-profile__fields .wa-field {
    margin-bottom: 0;
    width: 50%;
}

.wa-profile__fields .wa-field label {
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
    color: #64748b;
}

.wa-profile__fields .wa-field input {
    padding: 7px 10px;
    font-size: 14px;
}

.wa-avatar-upload {
    position: relative;
    display: block;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 50%;
    cursor: pointer;
}

.wa-avatar-preview {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #e5e7eb;
    display: block;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #e2e8f0;
    transition: box-shadow 0.2s;
}

.wa-avatar-overlay {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff;
    pointer-events: none;
}

.wa-avatar-overlay svg {
    width: 12px;
    height: 12px;
}

.wa-avatar-upload:hover .wa-avatar-preview,
.wa-avatar-upload:focus-within .wa-avatar-preview {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--primary-color);
}

.wa-section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8;
    margin-bottom: 0.75rem;
}

.wa-tabs {
    display: flex;
    gap: 0;
    flex-shrink: 0;
    border-bottom: 1px solid var(--border-color);
    padding: 0 1.25rem;
    background: #fff;
}

.wa-tab {
    padding: 0.65rem 1rem;
    border: none;
    background: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-text);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
}

.wa-tab:hover {
    color: var(--primary-color);
}

.wa-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

.wa-tab-pane {
    display: none;
}

.wa-tab-pane.active {
    display: block;
}

.wa-settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1rem;
    margin-bottom: 1rem;
}

.wa-settings-grid .wa-field {
    margin-bottom: 0;
}

.wa-settings-group {
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.wa-settings-group .wa-field {
    margin-bottom: 0.75rem;
}

.wa-settings-group .wa-field-row {
    margin-bottom: 0;
}

.wa-settings-group .wa-field-row .wa-field {
    margin-bottom: 0;
}

.wa-toggle-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.wa-toggle-group--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}

.wa-toggle-btn {
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--primary-text-color);
}

.wa-toggle-group--split .wa-toggle-btn {
    width: 100%;
    text-align: center;
}

.wa-toggle-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.wa-toggle-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.wa-msg-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wa-msg-card {
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    background: #fff;
    padding: 8px 10px;
}

.wa-msg-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 6px;
}

.wa-sender-toggle {
    display: inline-flex;
    background: #f1f5f9;
    border-radius: 999px;
    gap: 3px;
}

.wa-sender-toggle__btn {
    border: none;
    background: transparent;
    color: #94a3b8;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1.2;
}

.wa-sender-toggle__btn:hover {
    color: #64748b;
}

.wa-sender-toggle__btn.active {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.wa-msg-card__actions {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    flex-shrink: 0;
}

.wa-msg-card__actions button {
    width: 28px;
    height: 20px;
    border: none;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s;
    padding: 0;
}

.wa-msg-card__actions button:hover:not(:disabled) {
    background: #f1f5f9;
    color: #334155;
}

.wa-msg-card__actions button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}



.wa-msg-card__actions svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-color);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wa-msg-card__actions button.delete svg{
    stroke: #000;
}

.wa-msg-card__actions button.delete:hover {
    background: #fee2e2;
    color: #dc2626;
}

.wa-msg-card__input {
    width: 100%;
    /* min-height: 72px; */
    padding: 6px 10px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-text-color);
    background: #fff;
    resize: vertical;
    line-height: 1.45;
    transition: border-color 0.2s;
}

.wa-msg-card__input::placeholder {
    color: #94a3b8;
}

.wa-msg-card__input:focus {
    outline: none;
    border-color: #cbd5e1;
}

.wa-msg-card__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
}

.wa-msg-card__meta .wa-field {
    margin-bottom: 0;
}

.wa-msg-card__meta label {
    font-size: 12px;
    margin-bottom: 4px;
}

.wa-msg-card__meta input,
.wa-msg-card__meta select {
    padding: 7px 9px;
    font-size: 14px;
}

.wa-msg-card__date-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748b;
}

.wa-msg-card__date-label svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.wa-msg-toolbar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.wa-msg-empty {
    text-align: center;
    padding: 1.5rem 1rem;
    color: var(--gray-text);
    font-size: 0.85rem;
    border: 1px dashed var(--border-color);
    border-radius: 10px;
    margin-bottom: 0.75rem;
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1.1rem;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.wa-btn--primary {
    background: var(--primary-color);
    color: #fff;
}

.wa-btn--primary:hover {
    background: var(--primary-color-hover);
}

.wa-btn--secondary {
    background: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.wa-btn--secondary:hover {
    background: var(--primary-color-light);
}

.wa-btn--block {
    width: 100%;
}

.wa-btn--sm {
    padding: 0.45rem 0.75rem;
    font-size: 0.8rem;
}

.wa-btn-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

/* Preview area */
.wa-preview-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: sticky;
    top: 1rem;
}

.wa-preview-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.wa-phone {
    width: 360px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.06);
    background: #111;
}

.wa-phone--ios {
    border-radius: 36px;
    padding: 6px;
    background: #1a1a1a;
}

.wa-phone--ios .wa-phone__screen {
    border-radius: 32px;
    overflow: hidden;
}

.wa-phone__screen {
    display: flex;
    flex-direction: column;
    height: 680px;
    background: #efeae2;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-image: url(/assets/images/whatsapp-bg-light.png);
    background-size: cover;
    background-position: center;
}

.wa-phone__screen--dark {
    background: #161717;
    background-image: url(/assets/images/mask-dark-background.svg);
}

.wa-phone__screen.has-custom-wallpaper,
.wa-phone__screen--dark.has-custom-wallpaper {
    background-size: cover;
    background-position: center;
}

.wa-phone__screen.has-wallpaper::before,
.wa-phone__screen.has-custom-wallpaper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.wa-phone__screen.has-wallpaper .wa-statusbar,
.wa-phone__screen.has-wallpaper .wa-chat-header,
.wa-phone__screen.has-wallpaper .wa-chat-body,
.wa-phone__screen.has-wallpaper .wa-chat-footer,
.wa-phone__screen.has-custom-wallpaper .wa-statusbar,
.wa-phone__screen.has-custom-wallpaper .wa-chat-header,
.wa-phone__screen.has-custom-wallpaper .wa-chat-body,
.wa-phone__screen.has-custom-wallpaper .wa-chat-footer {
    position: relative;
    z-index: 1;
}

.wa-wallpaper-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.wa-wallpaper-upload {
    position: relative;
    display: block;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 14px;
    cursor: pointer;
}

.wa-wallpaper-preview {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
    background: #e5e7eb;
    display: block;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #e2e8f0;
    transition: box-shadow 0.2s;
}

.wa-wallpaper-upload:hover .wa-wallpaper-preview,
.wa-wallpaper-upload:focus-within .wa-wallpaper-preview {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--primary-color);
}

.wa-wallpaper-meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

.wa-field-hint {
    margin: 0;
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* Status bar */
.wa-statusbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 16px 4px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #008069;
    flex-shrink: 0;
}

.wa-phone--ios .wa-statusbar {
    background: #f4f1ec;
    color: #000;
    padding-top: 8px;
}

.wa-phone__screen--dark .wa-statusbar {
    background: #1f2c34;
    color: #e9edef;
}

.wa-phone--ios.wa-phone--dark-ios .wa-statusbar,
.wa-phone--ios .wa-phone__screen--dark .wa-statusbar {
    background: #101010;
    color: #e9edef;
}

.wa-statusbar__time {
    font-weight: 600;
    letter-spacing: 0.02em;
}

.wa-statusbar__icons {
    display: flex;
    align-items: center;
    gap: 5px;
}

.wa-statusbar__icons svg {
    display: block;
}

.wa-statusbar__battery {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 11px;
}

/* Chat header */
.wa-chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: #008069;
    color: #fff;
    flex-shrink: 0;
}

.wa-phone__screen--dark .wa-chat-header {
    background: #1f2c34;
}

.wa-chat-back {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-phone--ios .wa-chat-back {
    padding: 5px;
    background-color: #fbfdf3;
    border: 0.5px solid #ffffff29;
    border-radius: 20px;
}

.wa-phone--ios .wa-phone__screen--dark .wa-chat-back {
    background-color: #182322;
}

.wa-chat-header__back {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    opacity: 0.9;
}

.wa-phone--ios .wa-chat-header__back {
    position: relative;
    left: -2px;
}

.wa-chat-header__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #ccc;
}

.wa-chat-header__info {
    flex: 1;
    min-width: 0;
}

.wa-chat-header__name {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wa-chat-header__status {
    font-size: 12px;
    line-height: 1.3;
}

.wa-chat-header__status.typing {
    color: #a8e6cf;
}

.wa-chat-header__actions {
    display: flex;
    gap: 18px;
    padding-right: 8px;
    flex-shrink: 0;
}

.wa-chat-header__actions svg {
    opacity: 0.9;
}

.wa-connect {
    display: flex;
    gap: 18px;
    flex-shrink: 0;
}

.wa-phone--ios .wa-chat-header__actions .wa-connect {
    padding: 8px 12px;
    background: #fbfdf3;
    border: 0.5px solid #fbfdf3;
    border-radius: 40px;
}

.wa-phone--ios .wa-phone__screen--dark .wa-chat-header__actions .wa-connect {
    background: #182322;
    border: 0.5px solid #ffffff29;
}

.wa-phone--ios .wa-chat-header__actions .wa-dots {
    display: none;
}

/* Chat body */
.wa-chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    scrollbar-width: none;
}

.wa-chat-body::-webkit-scrollbar {
    display: none;
}

.wa-chat-date {
    align-self: center;
    background: rgba(255, 255, 255, 0.92);
    color: #54656f;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 8px;
    margin: 8px 0 6px;
    font-weight: 500;
}

.wa-phone__screen--dark .wa-chat-date {
    background: #182229;
    color: #cfcfcf;
    box-shadow: none;
}

.wa-bubble-wrap {
    display: flex;
    flex-direction: column;
}

.wa-bubble-wrap--sent {
    /* align-self: flex-end; */
    align-items: flex-end;
}

.wa-bubble-wrap--received {
    /* align-self: flex-start; */
    align-items: flex-start;
}

.wa-bubble {
    position: relative;
    padding: 6px 8px 8px 9px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 20px;
    word-wrap: break-word;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
    max-width: 80%;
}

.wa-bubble--received {
    background: #fff;
    color: #111b21;
    border-top-left-radius: 0;
}

.wa-bubble--sent {
    background: #d9fdd3;
    color: #111b21;
    border-top-right-radius: 0;
}

.wa-phone__screen--dark .wa-bubble--received {
    background: #1b2a33;
    color: #fff;
}

.wa-phone__screen--dark .wa-bubble--sent {
    background: #1A4C36;
    color: #fff;
}

.wa-bubble__text {
    padding-right: 4px;
    white-space: pre-wrap;
    display: inline;
}

.wa-bubble__footer {
    display: -webkit-box;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    margin-top: 1px;
    float: right;
    margin-left: 8px;
    position: relative;
    top: 4px;
}

.wa-bubble__time {
    font-size: 11px;
    color: #0009;
    line-height: 1;
}

.wa-phone__screen--dark .wa-bubble__time {
    color: #d1d7db;
}

.wa-bubble__ticks {
    display: flex;
    align-items: center;
    line-height: 0;
}

.wa-bubble__ticks svg {
    width: 16px;
    height: 16px;
}

.wa-bubble__ticks--read svg path {
    fill: #007bfc;
}

.wa-bubble__ticks--sent svg path,
.wa-bubble__ticks--delivered svg path {
    fill: #00000099;
}

.wa-phone__screen--dark .wa-bubble__ticks--read svg path {
    fill: #53bdeb;
}


.wa-phone__screen--dark .wa-bubble__ticks--sent svg path,
.wa-phone__screen--dark .wa-bubble__ticks--delivered svg path {
    fill: #aeaeae;
}


/* Chat footer */
.wa-chat-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px 10px;
    flex-shrink: 0;
}

.wa-phone .wa-iosFooter {
    display: none;
}

.wa-phone--ios .wa-iosFooter {
    display: flex;
}

.wa-phone--ios .wa-androindFooter {
    display: none;
}

.wa-chat-footer__input {
    flex: 1;
    background: #fff;
    border-radius: 24px;
    padding: 8px 10px;
    font-size: 14px;
    color: #3a4145;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-chat-footer__input span {
    flex: 1 1 0%;
}

.wa-phone__screen--dark .wa-chat-footer__input {
    background: #1b2a33;
    color: #bcbdbe;
}

.wa-chat-footer__mic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #008069;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-phone--ios .wa-chat-footer__mic {
    background: none;
    color: #000;
}


.wa-phone__screen--dark .wa-chat-footer__mic {
    background: #00a884;
}

/* iOS specific tweaks */
.wa-phone--ios .wa-chat-header {
    background: #f4f1ec;
    color: #000;
    border-bottom: 0.5px solid #f4f1ec;
}

.wa-phone--ios .wa-chat-header__status {
    color: #8e8e93;
}

.wa-phone--ios .wa-chat-header__status.typing {
    color: #008069;
}

.wa-phone--ios .wa-phone__screen--dark .wa-chat-header {
    background: #101010;
    color: #e9edef;
    border-bottom-color: #101010;
}

.wa-phone--ios .wa-bubble--sent {
    background: #dcf8c6;
}

.wa-phone--ios .wa-phone__screen--dark .wa-bubble--sent {
    background: #005c4b;
}

.wa-phone--ios .wa-chat-footer {
    background: #f4f1ec;
    border-top: 0.5px solid #f4f1ec;
    padding-bottom: 25px;
}

.wa-phone--ios .wa-phone__screen--dark .wa-chat-footer {
    background: #101010;
    border-top-color: #101010;
    color: #bcbdbe;
}

/* Export overlay */
.wa-exporting .wa-preview-actions,
.wa-exporting .wa-panel {
    pointer-events: none;
    opacity: 0.6;
}

.wa-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: wa-spin 0.7s linear infinite;
}

.wa-btn--primary.loading .wa-loader {
    display: inline-block;
}

.wa-btn--primary.loading .wa-btn-text {
    opacity: 0.7;
}

@keyframes wa-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 991px) {
    .wa-tool {
        grid-template-columns: 1fr;
    }

    .wa-panel__body {
        max-height: none;
    }

    .wa-preview-wrap {
        position: static;
    }

    .wa-phone__screen {
        height: 600px;
    }
}

@media (max-width: 480px) {
    .wa-field-row {
        grid-template-columns: 1fr;
    }

    .wa-settings-grid {
        grid-template-columns: 1fr;
    }

    .wa-profile {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .wa-avatar-upload {
        margin: 0 auto;
    }

    .wa-msg-card__meta {
        grid-template-columns: 1fr;
    }

    .wa-phone {
        max-width: 100%;
        border-radius: 16px;
    }

    .wa-phone--ios {
        border-radius: 24px;
        padding: 8px;
    }

    .wa-phone__screen {
        height: 520px;
    }
}


    /* mask-image: url(https://static.whatsapp.net/rsrc.php/yx/r/voSdkk88H7C.svg);
    mask-mode: alpha;
    mask-repeat: repeat;
    mask-size: 360px auto;
    background-color: #e4af6a;
    z-index: 0;
    opacity: 0.6; */