
@media (min-width: 992px) {
    /* Reduce the space between list items */
    .theme-navigation-and-icons .theme-menu-area .theme-menu ul li {
        margin-left: 2px;
    }

    /* For specific header styles, adjust the margins of the list items */
    .zpheader-style-02 .zpcontainer .theme-navigation-and-icons .theme-menu-area .theme-menu > ul > li, 
    .zpheader-style-03 .zpcontainer .theme-navigation-and-icons .theme-menu-area .theme-menu > ul > li {
        margin: 0px 5px;
    }

    /* Remove top margin and border from the header */
    .zpheader-style-02 .theme-header.theme-header-navigation-style {
        border-top: 0 none;
        margin-top: 0;
    }

    /* Flexbox: Ensure the menu items align properly and prevent wrapping */
    .theme-navigation-and-icons .theme-menu-area .theme-menu ul {
        display: flex;
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding: 10px 0; /* Reduce padding for more space */
    }

    /* Menu items: Adjust padding and font size for better fit */
    .theme-menu-area .theme-menu ul li a {
        white-space: nowrap;
        padding: 8px 10px;
        font-size: 14px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Ensure the menu area takes up the full width */
    .theme-navigation-and-icons .theme-menu-area {
        width: 100%;
    }
}

.theme-navigation-and-icons .theme-search-and-mini-cart-group .theme-search .theme-search-icon svg{
  width: 25px !important;
  height: 25px !important;
  fill: #30231D !important;
}
@media all and (min-width:992px){
 .theme-search .theme-search-and-mini-cart-group-item{
    position: fixed;
    top: 35px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
  }
}

/*logo large size*/
@media all and (min-width:992px){
.theme-header .zpcontainer .theme-branding-info .theme-logo-parent a img {
max-width: none !important;
max-height: none !important;
width: 50% !important;
height: auto !important;
display: block;
margin-left: auto;
margin-right: auto;
}
}

/*For Daily Inspiration*/
.zpsnippet-container {
    margin-top: -3em;
    margin-bottom: -3em;
}


@media all and (min-width:992px){
.you-tube {
    overflow: hidden;
    position: relative;
    width:70%;
    margin-left:auto;
    margin-right:auto;
    }
}
@media all and (max-width:991px){
.you-tube {
    overflow: hidden;
    position: relative;
    width:100%;
    margin-left:auto;
    margin-right:auto;
    }
}

.you-tube::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

.you-tube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*Image Hover Animation*/
.zpimage-container.zpimage-align-center.zpimage-size-fit figure{
    position: relative;
}
.zpimage-container.zpimage-align-center.zpimage-size-fit figure::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.zpimage-container.zpimage-align-center.zpimage-size-fit figure:hover::before {
-webkit-animation: shine 1s;
	animation: shine 1s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}

/*Read & Buy Books & Download eBooks/Apps customization*/
.zpelem-box{
	/*box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;*/
    transition: 0.3s;
}
.zpelem-box:hover{
     box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

/*Social Media icons*/
#elm_2IqUBhxaUM5KxpLfN9w_0A .zpsection{
	background-color: #FDF2E0; 
}

/*Image radius*/
.zpimage-container.zpimage-align-center.zpimage-size-fit figure img {
        display: inline-block;
        width: 100% !important;
        height: auto !important;
        vertical-align: top;
        border-radius: 10px;
    }
.zpimage-container.zpimage-align-center {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
} 
.zpimage-container.zpimage-align-center figure {
  display: inline-block;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.zpimage-container.zpimage-align-center figure:hover {
  transform: scale(1.01);
  filter: brightness(1.05)
}
<style>
/* --- Flickr Justified Gallery Grid --- */
:root {
  --gallery-row-height: 150px;
  --gallery-gap: 0.1em;
}

.gallery-grid {
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
  margin-bottom: calc(-1 * var(--gallery-gap, 1em));
  margin-left: calc(-1 * var(--gallery-gap, 0.5em));
}

.gallery-grid:after {
  content: "";
  flex-grow: 999999999;
  min-width: var(--gallery-row-height);
  height: 0;
}

.gallery-grid > * {
  display: block;
  height: var(--gallery-row-height);
  flex-grow: 1;
  margin-bottom: var(--gallery-gap, 0.5em);
  margin-left: var(--gallery-gap, 0.5em);
}

.gallery-grid > * > .flickr_tiles {
  height: var(--gallery-row-height);
  object-fit: cover;
  max-width: 100%;
  min-width: 100%;
  vertical-align: bottom;
  cursor: zoom-in;  
  border-radius: 10px;
  transition: transform 0.2s ease;
}

/* --- Flickr Modal (Lightbox) --- */
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
}

.modal-content {
  padding: 0;
  width: 100%;
  max-width: 1200px;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.flickr_slides {
  display: block;
  margin: auto;
  height: 100%;
  width: auto;
  min-height: 23px;
  min-width: 136px;
  max-height: 90vh;
  margin-top: -5%;
}

/* --- Lightbox Controls --- */
.close {
  color: white;
  position: absolute;
  right: 0;
  font-size: 25px;
  font-weight: bold;
  padding: 15px;
  top: -50px;
  cursor: pointer;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  transition: 0.6s ease;
  user-select: none;
}

.next { right: 0; border-radius: 3px 0 0 3px; }
.prev:hover, .next:hover { background-color: rgba(0, 0, 0, 0.8); }

#caption, .download {
  color: white;
  position: absolute;
  margin: 0;
  top: 104%;
  transform: translate(-50%, -50%);
}
#caption { left: 65%; }
.download { left: 35%; }
.download a { color: white; }

/* --- Loading & "Load More" UI --- */
p#loading {
  font-size: 22px;
  color: #d5d5d5;
  font-family: 'Source Code Pro', monospace;
  text-align: center;
}

.loadingbutton {
  width: 100%;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

.loadingbutton .btn.loadmore {
  background-color: white;
  border: 1px solid white;
  color: black;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 15px;
  display: inline-block;
  visibility: visible !important;
}

.loadingbutton .btn.loadmore .phtsrem {
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
}

.loadingbutton .btn.loadmore:hover {
  background-color: grey;
  color: white;
}

/* --- Responsive Row Heights --- */
@media only screen and (min-width: 360px) { :root { --gallery-row-height: 100px; } }
@media only screen and (min-width: 768px) { :root { --gallery-row-height: 125px; } }
@media only screen and (min-width: 1280px) { :root { --gallery-row-height: 150px; } }

/* --- Utility / Misc Flickr --- */
.rkmSlides, .downldbtn { display: none; }

/* --- Blog post background color change --- */
.zpsection {
  background-color: #FFEBCA;
}
/* --- Comment background color change --- */
.zpsection.theme-single-blog-comment-container {
    background-color:  #ffdead;
}
</style>