

:root {

    --oxpng-primary-color: rgb(243, 98, 53);
    --oxpng-hover-color: rgb(255, 182, 160);
    --oxpng-primary-dim-color: rgba(243, 98, 53, 0.5);
    
}
.btn-primary {
    background-color: var(--oxpng-primary-color);
    border-color: var(--oxpng-primary-color);
    color:rgb(255, 255, 255);

    transition: all 0.5s ease;
}
.btn-primary:hover {
    background-color: var(--oxpng-hover-color);
    border-color: var(--oxpng-hover-color);
    color:rgb(0, 0, 0);
}
.bg-oxpng {
    background-color: rgb(243, 98, 53);
}
.search-container {
    border-radius: 50px;
    height: 50px;
    background-color: white;
    display: flex;
    align-items: center;
    padding: 0 1px;
}

.search-input {
    border: none;
    outline: none;
    box-shadow: none;
    height: 100%;
    border-radius: 50px;
}

.search-button {
    border-radius: 50px;
    height: 100%;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
}

.search-container form {
    display: flex;
    width: 100%;
    align-items: center;
}
.search-input {
    border: none;
}

.search-input:hover, .search-input:active, .search-input:focus {
    border: none;
    outline: none;
    box-shadow: none;
}
.main-banner {
    background: url('imgs/hero.fw.png') no-repeat center center/cover;
    height: 400px;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-banner h1 {
    font-size: 3rem;
    font-weight: bold;
    transition: font-size 0.5s ease;
}
.main-banner p {
    font-size: 1rem;
    font-weight: normal;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.5s ease;
}
.tools-section {
    padding: 50px 0;
}

.tool-card {
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
}



@media screen and (max-width: 1024px) {
    .main-banner h1 {
        font-size: 1.5rem;
        font-weight: bold;
        
    }
    .main-banner p {
        font-size: 0.8rem;
        font-weight: normal;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}
@media screen and (min-width: 1024px) {
  
}


footer {
    background-color: rgba(165, 70, 41,1);
    width: 100%;
}

/* pngs PAGE */
    .icon-card {
    transition: box-shadow 0.2s ease;
  }
  .icon-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 0.375rem;
    border-width: 0.1rem;
    border-color: rgb(192, 192, 192);
    transition: transform 0.15s ease;
  }
  .color-swatch:hover {
    transform: scale(1.2);
  }


  .scrollable {
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }

  /* Custom Scrollbar Styling for WebKit Browsers (Chrome, Safari) */
  .scrollable::-webkit-scrollbar {
    width: 8px;  /* Adjust the width of the scrollbar */
  }
  
  .scrollable::-webkit-scrollbar-track {
    background: #f0f0f0; /* Background color of the scrollbar track */
    border-radius: 10px; /* Optional: Rounds the track edges */
  }
  
  .scrollable::-webkit-scrollbar-thumb {
    background-color: var(--oxpng-primary-dim-color);  /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounds the thumb edges */
    border: 2px solid #f0f0f0; /* Optional: Adds padding around thumb */
  }
  
  .scrollable::-webkit-scrollbar-thumb:hover {
    background-color: var(--oxpng-primary-dim-color); /* Thumb color on hover */
  }
  
  /* Custom Scrollbar Styling for Firefox */
  .scrollable {
    scrollbar-width: thin; /* Make scrollbar thinner */
    scrollbar-color: var(--oxpng-primary-dim-color) #f0f0f0; /* Thumb color and track color */
  }
  