html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #333;
}

/* 
########################################
            Social Media Links/Icons
########################################
*/

.social-icons a {
    margin: 0 10px;
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #0077b5; /* Change this to match your theme */
}


a {
    text-decoration: none;
    color: #006699;
    transition: color 0.3s ease;
}

a:hover {
    color: #004466;
    text-decoration: none;
}




/*
#####################################################
              HEADER & NAVIGATION                  
(~the top green bar and the main black navigation bar)                     
#####################################################
*/

/* --- Green top header bar --- */

#templatemo_site_title_bar_wrapper {
    background-color: #40a80c;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

#templatemo_site_title_bar {
    width: 960px;
    margin: 0 auto;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

#templatemo_site_title_bar h1 a {
    font-size: 26px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

#templatemo_site_title_bar h1 a .style5 {
    font-size: 14px;
    display: block;
    color: #ccc;
    text-decoration: none;
}

#templatemo_site_title_bar_wrapper:hover {
    background-color: white !important;
}

#templatemo_site_title_bar_wrapper:hover * {
    color: black !important;
}


#site_title {
    flex-shrink: 0;
    margin-right: 20px;
}

#site_title a h2 {
    color: white;
    font-size: 28px;
    margin: 0;
    line-height: 1;
}

#site_title a .style5 {
    display: block;
    font-size: 13px;
    color: #ccc;
}

#site_title a:hover h2,
#site_title a:hover .style5 {
    color: #eee;
}

#top_menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

#top_menu li a {
    font-size: 16px;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

#top_menu li a:hover {
    background-color: #ffffff;
    color: #2f4f4f;
}


/* --- Black main navigation bar --- */

#black_nav_bar_wrapper {
    background-color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#black_nav_bar {
    width: 960px;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

#black_nav_bar h2 {
    font-size: 22px;
    color: #ffffff;
    margin: 0;
    flex-shrink: 0;
    margin-right: 30px;
}

#black_menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
    align-items: center;
    text-align: center;
    font-size: 16px;
}

#black_menu li a {
    color: white;
    font-weight: 500;
    padding: 10px 0;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

#black_menu li a:hover {
    color: #40a80c;
    background-color: transparent;
}




/*
#####################################################
              MAIN CONTENT & LAYOUT                
   (~styles for containers, sections, and grids)    
#####################################################
*/

.container {
    max-width: 960px;
    margin: 30px auto;
    background: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
}

.section-title {
    border-bottom: 3px solid #7fd644;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.section-title h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #40a80c;
    margin: 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.col-md-3,
.col-md-6,
.col-md-9,
.col {
    box-sizing: border-box;
    height:auto;
    width: 80%;
}

.col-md-3 {
    flex: 0 0 calc(25% - 20px);
}

.col-md-6 {
    flex: 0 0 calc(50% - 20px);
}

.col-md-9 {
    flex: 0 0 calc(75% - 20px);
}

.col {
    flex: 1;
    
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 16px;
    color: #444444;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.published-images img {
  width: 100%;
  max-width: 250px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out;
  margin: auto;
}

.published-images .col {
  padding: 15px;
}

.published-images img:hover {
  transform: scale(1.05);
}



/*
#####################################################
            COMPONENT & ELEMENT STYLES             
   (~styles for specific, reusable components)      
#####################################################
*/

/* --- Intro box component --- */

.intro-box {
    display: flex;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 40px 0;
}

.intro-box:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px #40a80c;
}

.intro-image img {
    width: 250px;
    height: 100%;
    object-fit: cover;
}

.intro-text {
    padding: 20px 30px;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.intro-text h2 {
    margin-top: 0;
    color: #339900;
    font-size: 26px;
    margin-bottom: 10px;
}

.intro-text p {
    text-align: justify;
}

/* 
###################################
        Images styling
###################################
*/




/* For all intro section images */
.intro-box {
  display: flex;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 40px 0;
  padding: 20px; /* Add spacing inside box */
  align-items: center;
}

.intro-image {
  flex-shrink: 0;
  margin-right: 30px; /* pushes text to the right */
}

.intro-image img {
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #40a80c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.intro-image img:hover {
  transform: scale(1.05);
}

.intro-text {
  flex-grow: 1;
  padding: 10px 0;
}




/* For books-tab images */
.book-card img.book-cover {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
  #books-tab-wrapper {
    width: 1in; /* increase clickable area */
    height: 4in;
  }

  #books-tab-wrapper:hover {
    width: 100vw;
    height: 100vh;
  }

  #books-tab-content {
    padding: 10px 15px;
    font-size: 14px;
  }
}





/* Make sure containers scale well */
.intro-box,
.book-card,
.newsletter-container {
    max-width: 100%;
    overflow: hidden;
}

/* Optional: Responsive tweak for very small screens */
@media (max-width: 480px) {
    .intro-image img,
    .book-card img.book-cover,
    .col img.img-fluid {
        max-width: 100%;
    }

    .intro-box,
    .book-card {
        flex-direction: column;
        align-items: center;
    }
}


/* --- Book cover component --- */

.book-cover {
  width: 20%;
  max-width: 50px; 
  height: 100px;
  border-radius: 6px;
  margin-bottom: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  object-fit: contain;
}


.book-link {
    text-decoration: none;
}


/* --- Social icons component --- */

.social-icons {
    margin: 20px 0;
}

.social-icons a {
    display: inline-block;
    margin: 0 8px;
    transition: transform 0.3s ease;
}

.social-icons a img {
    width: 40px;
    height: 40px;
    vertical-align: middle;
}

.social-icons a:hover {
    transform: scale(1.15);
}


/* --- newsletter form component --- */

.newsletter-container {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 20px 0;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #40a80c;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-input:focus {
    border-color: #93fa58;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.newsletter-submit-btn {
    background-color: #000000;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.newsletter-submit-btn:hover {
    background-color: #1a3333;
    transform: scale(1.05);
}




/*
#####################################################
          INTERACTIVE ELEMENTS & WIDGETS           
   (Styles for the expandable side tab)            
#####################################################
*/

/* --- Expandable my books side tab section--- */

#books-tab-wrapper {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0.4in;
    height: 4in;
    background-color: #40a80c;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: width 0.4s ease, height 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    color: white;
    z-index: 999;
    display: flex;
    align-items: stretch;
}

#books-tab-wrapper:hover {
    width: 50vw;
    height: 90vh;
    background-color: white;
    box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.25);
    color: #333;
    cursor: default;
}

#books-tab-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 10px 6px;
    user-select: none;
    letter-spacing: 2px;
    text-align: center;
    flex-shrink: 0;
    transition: opacity 0.4s ease;
}

#books-tab-wrapper:hover #books-tab-label {
    opacity: 0;
    pointer-events: none;
}

#books-tab-content {
    width: 0;
    opacity: 0;
    padding: 0 20px;
    background: white;
    color: #333;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    transition: width 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    flex-grow: 1;
}

#books-tab-wrapper:hover #books-tab-content {
    width: calc(100% - 60px); /* fill wrapper width minus padding */
    opacity: 1;
    padding: 20px 30px;
}

#books-tab-content .section-title_h2,
#books-tab-content .section-title h2 {
    border-bottom: 3px solid #7fd644;
    padding-bottom: 8px;
    margin-bottom: 20px;
    color: #40a80c;
    font-size: 24px;
    margin-top: 0;
}

#books-tab-content .row {
    margin-top: 20px;
}

#books-tab-content h4 {
    margin: 8px 0 6px;
    font-weight: 600;
    color: #2f4f4f;
}

#books-tab-content p {
    font-size: 14px;
    line-height: 1.4;
    color: #444;
    margin-bottom: 10px;
}

#books-tab-content a {
    color: #40a80c;
    font-weight: 600;
    font-size: 14px;
}

#books-tab-content a:hover {
    text-decoration: underline;
}

/* --- Side tab scrollbar --- */

#books-tab-content::-webkit-scrollbar {
    width: 8px;
}

#books-tab-content::-webkit-scrollbar-thumb {
    background-color: #40a80c;
    border-radius: 10px;
}

#books-tab-content::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}




/*
#####################################################
                     FOOTER                        
   (~styles for the bottom footer of the page)      
#####################################################
*/

.footer {
    text-align: center;
    padding: 25px 15px;
    background-color: #40a80c;
    color: #fff;
    margin-top: 40px;
    font-size: 14px;
}




/*
#####################################################
              RESPONSIVE STYLES                    
   (Media queries for different screen sizes)      
#####################################################
*/

@media (max-width: 992px) {
    /* --- adjust layout for tablets and smaller screens --- */
    #templatemo_site_title_bar,
    #black_nav_bar {
        width: 90%; /* use percentage for better flexibility */
    }
}


@media (max-width: 768px) {
    /* --- main layout stacking for mobile phones --- */
    .row {
        flex-direction: column;
    }

    .col-md-3,
    .col-md-6,
    .col-md-9 {
        flex: 1 1 100%;
    }

    .form-control {
        width: 100%;
    }

    /* --- stacked intro box on mobile --- */
    .intro-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .intro-image img {
        width: 100%;
        height: auto;
    }

    .intro-text {
        padding: 20px;
    }

    /* --- full-screen expandable tab on mobile --- */
    #books-tab-wrapper {
        top: auto;
        bottom: 0;
        width: 100vw;
        height: 50px;
        border-radius: 0;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    #books-tab-wrapper:hover {
        height: 100vh;
    }

    #books-tab-label {    
        writing-mode: horizontal-tb;
        opacity: 1 !important;
        pointer-events: auto !important;
        padding: 10px 15px;
    }

    #books-tab-wrapper:hover #books-tab-label {
        opacity: 0;
        pointer-events: none;
        position: absolute;
    }

    #books-tab-content {
        width: 0;
        height: 0;
        opacity: 0;
        padding: 0;
    }

    #books-tab-wrapper:hover #books-tab-content {
        width: 100%;
        height: calc(100% - 50px);
        opacity: 1;
        padding: 15px 20px !important;
    }
}



/* --- BOOOKS TAB CONTENT --- */

.books-container-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border: 2px solid #7fd644;
    border-radius: 12px;
    padding: 20px;
    background-color: #f9f9f9;
    flex-wrap: wrap;
}

.book-card {
    width: 45%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
    position: relative;
}

.book-card:hover {
    transform: scale(1.02);
}

.book-card img.book-cover {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.buy-button-container {
    position: relative;
    margin-top: 10px;
}

.buy-button {
    background-color: #40a80c;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.buy-dropdown {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
    min-width: 160px;
    flex-direction: column;
}

.buy-dropdown a {
    display: block;
    padding: 10px 12px;
    color: #40a80c;
    text-decoration: none;
    font-size: 14px;
}

.buy-dropdown a:hover {
    background-color: #f0f0f0;
    text-decoration: none;
}

.buy-button-container:hover .buy-dropdown {
    display: block;
}



.books-container-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;         /* Add this */
  overflow: visible !important; /* Add this */
  z-index: 0;
}

.book-card {
  flex: 1 1 45%;
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.book-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.book-card .book-cover {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
}

.buy-button-container {
  position: relative;
  display: inline-block;
  margin-top: 10px;
}

.buy-button {
  background-color: #40a80c;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}

.buy-dropdown {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  border-radius: 6px;
  top: 100%;
  left: 0;
  z-index: 9999;
  padding: 10px 0;
}

.buy-dropdown a {
  color: #333;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
}

.buy-dropdown a:hover {
  background-color: #f0f0f0;
}

.buy-button-container:hover .buy-dropdown {
  display: block;
}



h2, h3, h4, p, a {
  transition: transform 0.3s ease-in-out;
  transform-origin: center center;

}

h2:hover, h3:hover, h4:hover, p:hover, a:hover {
  transform: scale(1.05);
  transform-origin: center center;

}

/* 
new books tab

*/
/* 
          INTERACTIVE ELEMENTS & WIDGETS           
   (Styles for the expandable side tab)            
#####################################################
*/

/* --- Expandable my books side tab section--- */

#books-tab-wrapper {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0.4in;
    height: 4in;
    background-color: #40a80c;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: width 0.4s ease, height 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    color: white;
    z-index: 999;
    display: flex;
    align-items: stretch;
}

#books-tab-wrapper:hover {
    width: 50vw;
    height: 90vh;
    background-color: white;
    box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.25);
    color: #333;
    cursor: default;
}

#books-tab-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 10px 6px;
    user-select: none;
    letter-spacing: 2px;
    text-align: center;
    flex-shrink: 0;
    transition: opacity 0.4s ease;
}

#books-tab-wrapper:hover #books-tab-label {
    opacity: 0;
    pointer-events: none;
}

#books-tab-content {
    width: 0;
    opacity: 0;
    padding: 0 20px;
    background: white;
    color: #333;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    transition: width 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    flex-grow: 1;
}

#books-tab-wrapper:hover #books-tab-content {
    width: calc(100% - 60px); /* fill wrapper width minus padding */
    opacity: 1;
    padding: 20px 30px;
}

#books-tab-content .section-title_h2,
#books-tab-content .section-title h2 {
    border-bottom: 3px solid #7fd644;
    padding-bottom: 8px;
    margin-bottom: 20px;
    color: #40a80c;
    font-size: 24px;
    margin-top: 0;
}

#books-tab-content .row {
    margin-top: 20px;
}

#books-tab-content h4 {
    margin: 8px 0 6px;
    font-weight: 600;
    color: #2f4f4f;
}

#books-tab-content p {
    font-size: 14px;
    line-height: 1.4;
    color: #444;
    margin-bottom: 10px;
}

#books-tab-content a {
    color: #40a80c;
    font-weight: 600;
    font-size: 14px;
}

#books-tab-content a:hover {
    text-decoration: underline;
}

/* --- Side tab scrollbar --- */

#books-tab-content::-webkit-scrollbar {
    width: 8px;
}

#books-tab-content::-webkit-scrollbar-thumb {
    background-color: #40a80c;
    border-radius: 10px;
}

#books-tab-content::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}


.books-container-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border: 2px solid #7fd644;
    border-radius: 12px;
    padding: 20px;
    background-color: #f9f9f9;
    flex-wrap: wrap;
}

.book-card {
    width: 45%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
    position: relative;
}

.book-card:hover {
    transform: scale(1.02);
}

.book-card img.book-cover {
    width: 50%;
    height: auto;
    border-radius: 6px;
}

.buy-button-container {
    position: relative;
    margin-top: 10px;
    color: white
}

.buy-button {
    background-color: #40a80c;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

 


.books-container-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;         /* Add this */
  overflow: visible !important; /* Add this */
  z-index: 0;
}

.book-card {
  flex: 1 1 45%;
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.book-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.book-card .book-cover {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
}

.buy-button-container {
  position: relative;
  display: inline-block;
  margin-top: 10px;
}

.buy-button {
  background-color: #40a80c;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}

.buy-dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 105%;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    min-width: 160px;
    flex-direction: column;
    text-decoration: none;
}


.buy-dropdown a {
  color: #333;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  
}

.buy-dropdown a:hover {
  background-color: #f0f0f0;
}

.buy-button-container:hover .buy-dropdown {
  display: flex;
}
/* 
##################################################
            STYLING FOR IMAGES(COMBINED)
##################################################
*/

/* General image styling for all images */
/* General image styling */
img {
  max-width: 113%;
  height: 10%;
  border: 3px solid #e2f3dc; /* soft green border */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(64, 168, 12, 0.15); /* soft green glow */
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  padding: 6px;
}

/* On hover: lift up slightly and brighten */
img:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(64, 168, 12, 0.3); /* brighter glow */
  background-color: #f6fff1; /* very light green background */
}



/* 
##############################################

        Search Box Styling

##############################################        

*/

/* Search input field in navbar */
#black_menu input[type="search"] {
  padding: 10px 14px;
  border-radius: 6px;
  border: 2px solid #40a80c; /* Green border */
  background-color: #f8fff4;
  color: #333;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 200px;
}

#black_menu input[type="search"]:focus {
  outline: none;
  border-color: #93fa58;
  box-shadow: 0 0 8px rgba(64, 168, 12, 0.4);
}

/* Search button (image inside button) */
.search_but {
  background-color: #40a80c;
  border: none;
  border-radius: 6px;
  padding: 8px 10px;
  margin-left: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.search_but:hover {
  background-color: #339900;
  transform: scale(1.05);
}

.search_but img {
  width: 18px;
  height: 18px;
}


p,a {
    font-weight: bolder;
}