/* ===== Tutorials Index ===== */
.tx-tutorials-index {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}
.tx-index-header {
    text-align: center;
    margin-bottom: 40px;
}
.tx-index-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}
.tx-index-header input {
    width: 100%;
    max-width: 420px;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 30px;
    border: 1px solid #ddd;
}

.tx-trending, .tx-all-tutorials {
box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
    padding: 12px;
    border-radius: 14px;
    border-bottom: 3px solid #ff8900;
}
.tx-trending {
    margin-bottom: 20px;
}


/* ===== Trending ===== */
.tx-trending h2 {
    margin-bottom: 15px;
    text-align: center;
   /* border-bottom: 2px dotted red; */
}
.tx-all-tutorials h2{
  text-align: center;
/*   border-bottom: 2px dotted red;
 background-color: #FFF176;
  margin-top: 5px; */
}
.tx-trending-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
/* ===== All Tutorials ===== */
.tx-tutorial-list {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.tx-tutorial-tag {
    padding: 4px 10px;
    background: #EAECEE; /* #FCE7F3; *#EBE6FF; */
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s ease;
}
.tx-tutorial-tag:hover {
    background: #e9f7f1;
}
#txLoadMoreTutorials {
    margin: 25px auto 0;
    display: block;
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    background: #04aa6d;
    color: #fff;
    cursor: pointer;
}
#txLoadMoreTutorials:disabled {
    background: #ccc;
    cursor: default;
}
/* ===== Empty State ===== */
.tx-empty-state {
    text-align: center;
    margin: 30px 0;
    color: #666;
}