/* 
Theme Name: Yellow Tail Tech Hub
Theme URI: https://hub.yellowtail.tech
Description: Official Theme for Yellow Tail Tech Hub
Author: Marketing Team
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

#search-loop-grid {
  width: 100%;
  font-size: 16px;
  background: rgba(217, 217, 217, 1);
  border: 0;
  border-radius: 60px;
  padding: 10px 30px;
}

.tab-nav { list-style: none; display: flex; border-bottom: 2px solid #ccc; }
.tab-nav li { padding: 20px; cursor: pointer; border-bottom: 3px solid transparent; }
.tab-nav li.active { border-bottom: 3px solid #FFC107; font-weight: bold; }
.tab-pane { display: none; padding: 15px; }
.tab-pane.active { display: block; }

.eos-library,
.ytt-library {
  background: #f4f4f4;
  border-radius: 15px;
}

.eos-library .tab-nav,
.ytt-library .tab-nav {
  background: #fff;
  border-radius: 15px 15px 0px 0px;
}

.eos-library .tab-pane,
.ytt-library .tab-pane  {
  padding: 30px;
}

.eos-library .dataTables_length,
.ytt-library .dataTables_length {
  float: left;
  padding-bottom: 20px;
}

.eos-library .dataTables_filter label,
.eos-library .dataTables_length label,
.ytt-library .dataTables_filter label,
.ytt-library .dataTables_length label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.eos-library .dataTables_length select,
.ytt-library .dataTables_length select{
  padding: 1px;
  border: 0;
  background: #d9d9d9;
}

.eos-library .dataTables_filter ,
.ytt-library .dataTables_filter {
  float: right;
  padding-bottom: 20px;
}

.eos-library .dataTables_filter input,
.ytt-library .dataTables_filter input {
  padding: 1px 10px;
  border: 0;
  background: #d9d9d9;
}

.eos-library .dataTables_wrapper,
.ytt-library .dataTables_wrapper {
  background: #fff;
  padding: 30px;
}

.eos-library .download,
.ytt-library .download {
  background: #ffcc00;
  padding: 5px 10px;
  white-space: nowrap;
  border-radius: 60px;
  font-weight: bold;
  text-align: center;
}
.eos-library .paginate_button.current,
.ytt-library .paginate_button.current {color: #ffcc00;}

.eos-library .paginate_button.disabled,
.ytt-library .paginate_button.disabled { background:#d9d9d9 !important; }

.eos-library .paginate_button.previous, .eos-library .paginate_button.next,
.ytt-library .paginate_button.previous, .ytt-library .paginate_button.next {
  border-radius: 10px;
  background: #ffcc00;
  padding: 5px 10px;
  display: inline-block;
}

.eos-library .paginate_button,
.ytt-library .paginate_button {
  padding: 0 5px;
  cursor: pointer;
}

.eos-library .dataTables_paginate,
.ytt-library .dataTables_paginate  {
  margin-top: 15px;
}


/* Timeline Container */
.timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;  /* some vertical spacing so you can see everything */
  }
  
  /* Horizontal line behind the circles */
  .timeline::before {
    content: "";
    position: absolute;
    top: 32%;
    left: 50%;
    right: 0;
    height: 4px;
    background-color: #f1c40f;
    transform: translate(-50%, -50%);
    width: 90%;
  }
  
  /* Each timeline item */
  .timeline-item {
    position: relative;
    text-align: center;
    width: 100%;
  }
  
  /* Circles */
  .circle {
    width: 124px;
    height: 124px;
    border-radius: 50%;
    margin: 0 auto 8px;
    z-index: 1; 
  }
  
  /* Example colors */
  .circle1 {
    background-color: #FFC600;
  }
  .circle2 {
    background-color: #FFD94C;
  }
  .circle3 {
    background-color: #FFEB99;
  }
  .circle4 {
    background-color: #FFF4CC;
  }
  .circle5 {
    background-color: #FFF9E6;
  }
  
  /* Text under each circle */
  .timeline-item p {
    font-size: 18px;
    color: #333;
    min-height: 45px;
  }
  
  /* Responsive behavior for smaller screens */
  @media (max-width: 600px) {
    .timeline {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .timeline::before {
      /* Hide horizontal line on mobile (optional) */
      content: none;
    }
  
    .timeline-item {
      margin-bottom: 40px;
    }

    .timeline-item p {
        font-size: 14px;
    }
  }

  @keyframes pulse {
    0% {
        transform: scale(0.95);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.95);
    }
}