/*
Theme Name:     Profile WP Theme
Text Domain:    pwpt
Domain Path:    /languages
*/


*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        interpolate-size: allow-keywords;
    }
}

.darkmode .container,
.darkmode .content,
.darkmode .post {
  background-color: #000;
}
html.darkmode, body.darkmode {
  background-color: #000!important;
}
.darkmode img,
.darkmode iframe,
.darkmode .container,
.darkmode .content {
  background-color: transparent !important;
}

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin-top: 0;
    margin-block-start: 0 !important;
}

.widget {
    margin-bottom: 10px;
}

li {
    margin-bottom: 5px;
}

h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

a:hover {
    text-decoration: none;
}
p {
    text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}

#root, #__next {
    isolation: isolate;
}

a {
    text-decoration: none !important;
}

/*theme base css*/
.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}

.position-sticky {
    position: sticky;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.align-items-center {
    align-items: center;
}

.pwpt-container {
    width: 100%;
    max-width: 1096px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

/*header-section*/

.pwpt-header-wrapper {
    background: rgb(139, 211, 149);
    background: linear-gradient(180deg, rgba(139, 211, 149, 1) 0%, rgba(255, 255, 255, 0) 50%);
}

.pwpt-header-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  min-height: 200px;
	  position: relative;
}

.pwpt-header-image {
    width: 100%;
    object-fit: cover;
    object-position: 0px 0px;
}

.pwpt-profile {
    border-radius: 50%;
    overflow: hidden;
    width: 170px;
    height: 170px;
    border: 4px #fff solid;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -80px;
    left: 40px;
}

.pwpt-profile-pic {
    width: 100%;
    object-position: center;
	background-color: #000;
}

.pwpt-profile-info-wrapper {
    padding: 32px 0 38px;
    border-bottom: #CCCED2 solid 1px;
}

.pwpt-text-contetn-wrapper {
    width: 80%;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pwpt-site-title a:hover,
.pwpt-button a:hover {
    text-decoration: none;
}


.pwpt-site-title h3 {
    font-size: 32px;
    line-height: 1.2em;
    font-weight: 700;
}

.pwpt-tagline p {
    font-size: 17px;
    line-height: 1.2em;
}

.pwpt-button .button-class {
    color: #fff;
    padding: 10px 5px;
    width: 100%;
    display: block;
    min-width: 135px;
    text-align: center;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

/*menu nav css*/
.pwpt-nav-menu-wrapper .header-menu > ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    padding: 10px 0 0 0;
}

.pwpt-nav-menu-wrapper .header-menu > ul .menu-item a {
    font-size: 22px;
    color: #808080;
    position: relative;
    z-index: 200;
}

.pwpt-nav-menu-wrapper .header-menu > ul > li {
    margin-bottom:0;
    padding-bottom:10px;
}

.pwpt-mobile-menu-button {
    background-color: #39B54A;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    transition: all 0.3s ease;
    gap: 5px;
    border: none;
}

.mobile-menu .visible {
    visibility: visible;
}

.mobile-menu > ul {
    visibility: hidden;
    position: absolute;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    width: 90%;
    top: 176px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 15px;
    border: 1px solid #BFC0C1;
    padding: 20px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px;
    -moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px;
}

.header-menu .sub-menu {
    position: absolute;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    width: max-content;
    top: 135px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 15px;
    border: 1px solid #BFC0C1;
    padding: 20px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px;
    -moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px;
    min-height: 200px;
    visibility: hidden;
}

.header-menu .menu-item-has-children {
    margin-right: 10px;
    position: relative;
    z-index: 200;
}

.header-menu .menu-item-has-children::after {
    content: "⮟";
    font: normal 20px/1 dashicons;
    speak: never;
    display: inline-block;
    bottom: 6px;
    vertical-align: bottom;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-decoration: none;
    font-size: 16px;
    color: #808080;
    position: absolute;
    right: -4px;
    z-index: 100;
}

.header-menu .menu-item-has-children.open .sub-menu {
    visibility: visible;
}

.mobile-menu .menu-item a {
    font-size: 16px;
    color: #808080;
    margin-right: 10px;
}

.mobile-menu .menu-item .sub-menu {
    padding-left: 15px;
}

.mobile-menu .menu-item-has-children > a::after {
    content: "⮟";
    font: normal 20px/1 dashicons;
    font-size: 16px;
    speak: never;
    display: inline-block;
    padding: 0 5px 0 0;
    bottom: 2px;
    position: relative;
    vertical-align: bottom;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-decoration: none;
    color: #808080;
}

.mobile-menu .menu-item-has-children:hover .sub-menu {
    display: block;
}

/*css for main page*/
.pwpt-site-main {
    margin: 0 auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid #BFC0C1;
}

.pwpt-post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.pwpt-post-thumbnail .wp-post-image {
    object-fit: contain;
    height: auto;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.author-avatar img {
    border-radius: 50%;
}

.entry-summary {
    margin-bottom: 15px;
}

.post-comments a {
    display: block;
    color: #2728c1;
    font-weight: bold;
}

.pagination {
    text-align: center;
    margin-top: 20px;
}

/*------main-content with side-bar-------*/
.pwpt-main-content-wrapper.sidebar-right {
    flex-direction: row-reverse;
}

.pwpt-main-content-wrapper.sidebar-middle {
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.sidebar-middle .pwpt-left-sidebar-wrapper {
    position: relative;
    margin-bottom: 30px;
	display: none;
}


.pwpt-main-content-wrapper {
    display: flex;
    gap: 30px;
    align-items: start;
}

.pwpt-left-sidebar-wrapper {
    width: 100%;
    max-width: 30%;
    background-color: #fff;
    border-radius: 8px;
    /*border: 1px solid #BFC0C1;*/
    padding: 20px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px;
    -moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px;
    position: sticky;
    top: 30px;
    z-index: 100;
}

.pwpt-page-content-wrapper {
    width: 100%;
    max-width: 70%;
}
.pwpt-post-class {
    background-color: #fff;
    border-radius: 8px;
    /*border: 1px solid #BFC0C1;*/
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px;
    -moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px;
    margin-bottom: 30px;
}
.pwpt-container.pwpt-main-content-wrapper.sidebar-middle .pwpt-left-sidebar-wrapper {
    max-width: 70%;
    top: 0;
}
.pwpt-author-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
    min-width: 50px;
    min-height: 50px;
}

.pwpt-post-profile-pic {
    object-fit: cover;
    width: 50px;
    height: 50px;
    object-position: center;
}

.pwpt-post-content {
    padding: 20px 30px;
}

.pwpt-admin-info-wrapper {
    gap: 10px;
    margin-bottom: 20px;
}

.pwpt-post-title a {
    color: #000;
    font-size: 16px;
    line-height: 1.3em;
    font-weight: 600;
}

.pwpt-post-date {
    font-size: 12px;
    color: #65676B;
    font-weight: 600;
}

.pwpt-entry-summary p {
    font-size: 16px;
    line-height: 1.2;
    color: #000;
    font-weight: 400;
}

.pwpt-single-image {
    margin-bottom: 20px;
}

/*interaction*/

.pwpt-interactions-count-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    border-bottom: 1px solid #808080;
}

.pwpt-emoji-reactions {
    display: flex;
    gap: 5px;
}

.pwpt-emoji-reactions span {
    font-size: 18px;
    color: #808080;
}

#pwpt-interactions-triggers {
    gap: 10px;
    margin-bottom: 20px;
    width: max-content;
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 16px -3px rgba(0, 0, 0, 0.53);
    -moz-box-shadow: 0px 3px 16px -3px rgba(0, 0, 0, 0.53);
    box-shadow: 0px 3px 16px -3px rgba(0, 0, 0, 0.53);
    padding: 10px 20px;
    border-radius: 20px;
    bottom: 36px;
    display: none;
    left: -4px;
}

#pwpt-interactions-triggers .emoji-trigger {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s;
}

#pwpt-interactions-triggers .emoji-trigger:hover {
    transform: scale(1.2);
}

#pwpt-interactions-triggers .emoji-trigger.loading {
    opacity: 0.6;
    cursor: not-allowed;
}

#pwpt-interactions-triggers .emoji-trigger:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/*.pwpt-archive-page:hover .pwpt-emoji-triggers {*/
/*    display: flex;*/
/*}*/

.pwpt-archive-page .pwpt-emoji-triggers {
    gap: 10px;
    margin-bottom: 20px;
    width: max-content;
    background-color: #000;
    -webkit-box-shadow: 0px 3px 16px -3px rgba(0, 0, 0, 0.53);
    -moz-box-shadow: 0px 3px 16px -3px rgba(0, 0, 0, 0.53);
    box-shadow: 0px 3px 16px -3px rgba(0, 0, 0, 0.53);
    padding: 10px 20px;
    border-radius: 20px;
    bottom: 36px;
    display: none;
    left: -4px;
}

.pwpt-archive-page .pwpt-emoji-triggers .emoji-trigger {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.position-absolute.pwpt-emoji-triggers .emoji-trigger.selected {
    background-color: #5DADEC !important;
    -webkit-box-shadow: 0px 3px 16px -3px rgba(0, 0, 0, 0.53);
    -moz-box-shadow: 0px 3px 16px -3px rgba(0, 0, 0, 0.53);
    box-shadow: 0px 3px 16px -3px rgba(0, 0, 0, 0.53);
    border-radius: 50%;
    height: 45px;
    width: 45px;
}

.pwpt-emoji-triggers .emoji-trigger:active {
    border: 1px solid red;
}


/*interaction*/
.pwpt-stats {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #65676B;
}

.pwpt-stats a {
    font-size: 14px;
    color: #65676B;
}

.pwpt-interaction-stats-icon {
    margin-left: 5px;
    width: 25px;
    height: 25px;
    object-fit: contain;
}

/*interactions-triggrer-row*/
.pwpt-interactions-triggrer-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}

.pwpt-interaction-trigger-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.pwpt-hover-button-wrapper {
    width: 100%;
}

.pwpt-interactions-action-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    border: none;
    background: none;
    color: #808080;
    font-size: 23px;
    font-weight: 400;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}
.pwpt-interactions-action-button.comment-button:hover {
    text-decoration: none;
}
.pwpt-interactions-action-button:hover {
    background-color: #f0f2f5;
}

/*#pwpt-reaction-link:hover #pwpt-interactions-triggers {*/
/*    display: flex;*/
/*}*/

.pwpt-post-thumbnail {
    margin: 10px auto;
}

/* pwpt comment row */
.pwpt-comment-row {
    padding: 0 20px 30px;
    display: flex;
    justify-content: center;
}

.pwpt-comment-input {
    background-color: #F0F2F5;
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #CCCCCC;
    border-radius: 20px;
    font-size: 18px;
    outline: none;
    max-width: 89%;
}

.pwpt-comment-input::placeholder {
    color: #65676B;
}

.pwpt-post-comments {
    padding: 10px 30px;
}

/*........comments to display..............*/
/* Main Comments Container */
.wp-block-comments {
    max-width: 800px;
    padding: 25px 20px;
}


/* Comment Headings */
.wp-block-comments .wp-block-heading {
    font-size: 30px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.3;
}

.wp-block-comments-title {
    font-size: 22px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.3;
}

/* Comment List */
.wp-block-comment-template {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wp-block-comment-template li {
    margin-bottom: 20px;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 20px;
}

/* Comment Layout */
.wp-block-group.is-layout-flex {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.wp-block-avatar img {
    border-radius: 50%;
    width: 50px;
	height: 50px;
    display: block;
}

/* Comment Meta */
.wp-block-comment-date {
    font-size: 14px;
    color: #666666;
    margin-bottom: 5px;
}

.wp-block-comment-date a {
    color: inherit;
    text-decoration: none;
}

.wp-block-comment-date a:hover {
    text-decoration: underline;
}

.wp-block-comment-author-name {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.wp-block-comment-author-name a {
    color: #1a1a1a;
    text-decoration: none;
}

.wp-block-comment-author-name a:hover {
    text-decoration: underline;
}

/* Comment Content */
.wp-block-comment-content {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 16px;
}

.wp-block-comment-content p {
    margin-bottom: 15px;
}

/* Comment Actions */
.wp-block-comment-edit-link,
.wp-block-comment-reply-link {
    font-size: 14px;
}

.wp-block-comment-edit-link a,
.wp-block-comment-reply-link a {
    font-weight: bold;
    color: var(--primary-color);
}

.wp-block-comment-edit-link a:hover,
.wp-block-comment-reply-link a:hover {
    text-decoration: underline;
}

.wp-block-comment-edit-link {
    margin-right: 20px;
}

/* Comment Form */
.comment-respond {
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
}

.comment-reply-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.logged-in-as {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666666;
}

.logged-in-as a {
    color: #2271b1;
    text-decoration: none;
}

.logged-in-as a:hover {
    text-decoration: underline;
}

.required-field-message {
    font-size: 14px;
    color: #666666;
    font-style: italic;
}

.required {
    color: #d63638;
}

.comment-form-comment label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.comment-form-comment textarea {
    width: 100%;
    min-height: 150px;
    padding: 15px;
    border: 1px solid #dddddd!important;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.6;
	background-color: #fff;
}

.comment-form-comment textarea:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.2);
}

/* Submit Button */
.form-submit {
    margin-top: 20px;
}

.wp-block-button__link {
    display: inline-block;
    background: var(--primary-color);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: max-content;
    height: auto;
    margin-bottom: 20px;
}

.wp-block-button__link:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* Comment Pagination */
.comment-navigation {
    margin: 30px 0;
    text-align: center;
}

.comment-navigation .nav-links a {
    color: #2271b1;
    text-decoration: none;
    padding: 5px 10px;
    margin: 0 5px;
}

.comment-navigation .nav-links a:hover {
    text-decoration: underline;
}

.comment-navigation .nav-links .current {
    font-weight: bold;
    color: #1a1a1a;
}

#commentform p {
    margin-bottom: 10px;
}

/*share button popup*/
.pwpt-share-links {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
}

.pwpt-share-links {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 15px;
    border: 1px solid #BFC0C1;
    padding: 20px 20px;
    -webkit-box-shadow: 0px 3px 16px -3px rgba(0, 0, 0, 0.53);
    -moz-box-shadow: 0px 3px 16px -3px rgba(0, 0, 0, 0.53);
    box-shadow: 0px 3px 16px -3px rgba(0, 0, 0, 0.53);
    max-width: 200px;
    bottom: 120px;
    left: 50%;
    transform: translate(0%, 50%);
    overflow: hidden;
    transition: all 0.4s ease;
    display: none;
}

.pwpt-share-link-item {
    color: #808080;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
}

.pwpt-mobile-menu {
    display: none;
}

/* popup for comments*/
#pwpt-popup-comments {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.pwpt-popup-content {
    background-color: white;
    border-radius: 8px;
    width: 100%;
    max-width: 80%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow-y: scroll;
    max-height: 90vh;
}

#pwpt-popup-comments > .d-flex {
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#closePopup {
    display: flex;
    justify-content: end;
    padding: 10px 30px;
    font-size: 40px;
    cursor: pointer;
}

.pwpt-popup-content .pwpt-page-content-wrapper {
    width: 100%;
    max-width: 100%;
}

#pwpt-popup-commentss {
    position: absolute;
    z-index: 1002;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wp-block-group__inner-container .wp-block-heading {
    margin-bottom: 10px;
}

/*add php*/
.pwpt-ad-banner {
    margin-bottom: 30px;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 10px;
}

.pwpt-single-image .post-thumbnail {
    height: max-content;
}
.pwpt-single-image .post-thumbnail .wp-post-image {
    object-fit: contain;
    height: max-content;
}

footer p {
    width: max-content;
    margin: 0 auto;
}



/* Darkmode */
body.darkmode {
  background-color: #000;
}

body.darkmode .pwpt-site-main{
  background-color: #000000!important;
}

body.darkmode footer{
  background-color: #000;
  color: #828282;

}
body footer{
  background-color: #f4f6f9;
  color: #828282;
}

body.darkmode .pwpt-post-class {
background-color: #333 !important;
border-radius: 8px;
color: #fff!important;
}

body.darkmode .pwpt-entry-summary p {
  font-size: 16px;
  line-height: 1.2;
  color: #cccccc;
  font-weight: 400;
}

body.darkmode .pwpt-left-sidebar-wrapper {
    background-color: #333;
}

body.darkmode .pwpt-comment-row .pwpt-comment-input {
  color: #999999;
  background-color: #1a1a1a;
  border: 0px ;
}

body.darkmode .pwpt-post-title a{
  color: #828282!important;
}

body.darkmode .pwpt-interactions-action-button:hover {
  background-color: #1a1a1a!important;
}
body.darkmode .comment-respond {
  background: #1a1a1a;
  padding: 10px 20px;
  border-radius: 8px;
}

body.darkmode .comment-reply-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #828282;
}

body.darkmode .comment-form-comment label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #828282;
}

body.darkmode .wp-block-comments .wp-block-heading {
  font-size: 30px;
  margin-bottom: 30px;
  color: #828282;
  font-weight: 600;
  line-height: 1.3;
}

body.darkmode .comment-form-comment textarea {
  width: 100%;
  min-height: 150px;
  padding: 15px;
  border: 0px!important;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.6;
  background-color: #828282;
}

body.darkmode .wp-block-comment-template li {
  margin-bottom: 20px;
  background: #333333;
  color: #fff;
  border-radius: 8px;
  padding: 10px 20px;
}

body.darkmode .wp-block-comment-edit-link a, .wp-block-comment-reply-link a, .logged-in-as a {
 color: var(--primary-color);
 font-weight: bold;
}

body.darkmode .wp-block-latest-comments__comment-meta{
  background-color: transparent;
}

.wp-block-latest-comments__comment-meta{
 background-color: transparent;
}

body.darkmode .pwpt-site-main {
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid #333333;
}

body.darkmode .wp-block-button__link {
  display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-size: 16px;
  width: max-content;
  height: auto;
  margin-bottom: 20px;
}

body.darkmode h1,
body.darkmode h2,
body.darkmode h3,
body.darkmode h4,
body.darkmode h5,
body.darkmode h6 {
	color: #828282 !important;
}

body.darkmode .wp-block-comment-author-name {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
  color: #cccccc;
}
body.darkmode .wp-block-comment-author-name a {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
  color: #cccccc;
}

body.darkmode .wp-block-comment-content p {
  margin-bottom: 15px;
  color: #cccccc; 
}

body.darkmode .wp-block-comment-date a {
  text-decoration: none;
  color: #cccccc!important;
}

body.darkmode .pwpt-post-date {
	font-size: 12px;
	color: #828282;
	font-weight: 600;
}

body.darkmode .pwpt-profile {
	border: 4px #000 solid;
}

body.darkmode .pwpt-site-title,
body.darkmode .pwpt-site-title a,
body.darkmode .pwpt-site-title h3 {
	color: var(--primary-color) !important;
}

body.darkmode .pwpt-tagline{
	color: #828282;
}
body.darkmode .wp-block-search__label {
	color: #828282;
}

.wp-block-search__button {
	background-color: var(--primary-color)!important;
	color: #fff;
	font-weight: bold;

}
body.darkmode .wp-block-search__button {
	background-color: var(--primary-color)!important;
	border: 0px;
}
body.darkmode .wp-block-search__input {
	background-color: #828282;
}
.pwpt-site-main {
	background-color: #F4F6F9;
}
body.darkmode .pwpt-profile-info-wrapper {
    border-bottom: #333333 solid 1px;
}
body.darkmode input, button, textarea, select {
    background-color: #828282;
	border: none!important;
}

html.darkmode, body.darkmode {
  background-color: #000 !important;
}

html, body {
	background-color: #fff;
}
body.darkmode .pwpt-archive-page .pwpt-emoji-triggers {
	background-color: #1a1a1a;
}
body:not(.darkmode) .pwpt-archive-page .pwpt-emoji-triggers {
	background-color: #ffffff;
	color: #000;
}
body.darkmode .pwpt-share-links {
    background-color: #1a1a1a !important;
    color: #fff !important;
}
body.darkmode .pwpt-share-links .pwpt-share-link-item {
    color: #ccc !important;
}

body.darkmode .mobile-menu > ul {
	background-color: #1a1a1a;
}

body.darkmode .mobile-menu .menu-item a {
  color: #ccc;
}

.mobile-menu .menu-item a {
  color: #000;
}

/* Container für den Toggle */
/* Container des Toggles */
.dtoggle {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 10;
}

/* Responsive Anpassung für kleinere Screens */
@media (max-width: 768px) {
  .dtoggle {
    top: 10px;
    right: 10px;
    transform: scale(0.9); /* Optional: Toggle leicht verkleinern */
  }
}

body.darkmode pwpt-interactions-triggers {
    background-color: #000;
}

body.darkmode .pwpt-ad-banner{
    color: #ccc!important;
}