table td, table th{
	border:none !important;
}

.content-manager-wrapper {
    max-width: 1200px;
    margin: 0 auto;
/*     padding: 20px; */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Search and Filter Form */
.manual-search-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.search-filters {
    display: flex;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
    align-items: center;
}

.search-box {
    flex: 1;
}

.search-box input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.search-box input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
    background: #fff;
}

.category-filter select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: #f8f9fa;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-filter select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
    background: #fff;
}

.search-submit {
    padding: .5rem 3.4rem !important;
    background: #AA1B1B;
	border:none !important;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.search-submit:hover{
    background: #0075A5;
    color: #fff;
}



/* Results Table */
.manuals-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 30px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
	
	border:1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


table tbody tr:hover,
table tbody tr:hover > td,
table tbody tr:hover > th {
    background-color: inherit !important;
}
table tbody>tr:nth-child(odd)>td, table tbody>tr:nth-child(odd)>th{
	background-color: inherit !important;
}


.manuals-table th {
    background: #f8f9fa;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    color: #000;
    font-size: 18px;
     text-transform: capitalize;
    letter-spacing: 0.5px;
/*     border-bottom: 2px solid #e0e0e0; */
    text-align: center;
	border-right:1px solid #e0e0e0 !important; 
	border-bottom :1px solid #e0e0e0 !important;

}
.manuals-table th:last-child{
	border-right: none !important;
}

.manuals-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
    font-size: 16px;
    text-align: center;
	border-right: 1px solid  #e0e0e0 !important; 
	border-bottom: 1px solid  #e0e0e0 !important;
    color: #444;
}
.manuals-table td:last-child {
    border-right: none !important;
}

.manuals-table tr:last-child td {
    border-bottom: none;
}

.manuals-table tr:hover {
    
  background-color: #f8f9fa !important;
    cursor: default !important; 
}

.manuals-table th.number-col,
.manuals-table td.number-col {
    width: 50px;
    text-align: center;
    
    font-weight: 500;
}

.manuals-table th.number-col {
    background: #f8f9fa;
    border-right: 1px solid #e0e0e0;
}

.manuals-table td.number-col {
    border-right: 1px solid #f0f0f0;
    font-size: 13px;
}

.manual-image {
    width: 130px;
}

.manual-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
}

.manual-image img:hover {
    transform: scale(1.05);
}

.manual-title a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.manual-title a:hover {
    color: #0073aa;
}

.manual-sku {
    color: #000;
    font-size: 16px;
}

.manual-downloads {
    text-align: center;
     
}

.manual-downloads ul {
    list-style: none;
    margin: 0;
    padding: 0;

	  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

.manual-downloads li {
    margin: 0;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
    background: #0073aa;
    color: #fff;
    text-decoration: none !important;
    border-radius: 4px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.download-link:hover {
    background: #AA1B1B;
    color: #fff;
    transform: translateY(-1px);
}

.download-link .pdf-icon {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.no-pdf {
    color: #666;
    font-style: italic;
    font-size: 14px;
}

/* Pagination */
.manual-pagination {
    text-align: end;
    margin-top: 10px;
}

.manual-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    margin: 0 3px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    min-width: 35px;
    height: 35px;
    transition: all 0.3s ease;
}

.manual-pagination .current {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

.manual-pagination a:hover {
    background: #f8f9fa;
    border-color: #0073aa;
    color: #0073aa;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border-radius: 10px;
    color: #666;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


.sec-search {
    display: flex;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-filters {
        flex-direction: column;
        gap: 20px;
    }

    .search-box,
    .category-filter select {
        width: 100%;
    }

    .search-submit {
        width: 100% !important;
    }

    .manuals-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .manuals-table th,
    .manuals-table td {
        min-width: 100%;
    }

    .manual-downloads ul {
        flex-direction: row;
        gap:  20px;
    }
    .download-link{
        padding: 8px 8px;
    }
    
    .download-link {
        width: 100%;
        justify-content: center;
    }
	.manual-title {
    font-weight: 600;
}
	.manuals-table tr:first-child {
    display: none !important;
}

}

.content-manager-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.content-manager-header {
    margin-bottom: 30px;
    text-align: center;
}

.content-manager-header h1 {
    font-size: 32px;
    color: #333;
    margin: 0;
}

.content-manager-filters {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.search-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    width: 100%;
}

.search-form input[type="text"] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.search-form button {
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.search-form button:hover {
    background: #005177;
}

.content-manager-table {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.content-manager-table table {
    width: 100%;
    border-collapse: collapse;
}

.content-manager-table th {
    background: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
}

.content-manager-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.content-manager-table tr:hover {
    background: #f8f9fa;
}

.number-col {
    width: 50px;
    text-align: center;
    color: #666;
    font-weight: 500;
}

.image-col {
    width: 100px;
}

.image-col img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.title-col h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.sku-col {
    color: #666;
    font-size: 14px;
}

.download-col {
    text-align: center;
    width: 30%;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.download-button:hover {
    background: #005177;
    color: #fff;
}

.download-button .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.pagination {
    margin-top: 30px;
    text-align: center;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.pagination .page-numbers.current {
    background: #0073aa;
    color: #fff;
}

.pagination .page-numbers:hover {
    background: #e0e0e0;
}

.pagination .page-numbers.current:hover {
    background: #005177;
}

@media (max-width: 768px) {
    .content-manager-table {
        overflow-x: auto;
    }
    
    .content-manager-table table {
        min-width: 600px;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-form button {
        width: 100%;
    }
}



/* YouTube icon styles */
.youtube-col {
    text-align: center;
    width: 80px;
}

.manual-youtube {
    text-align: center;
}

.youtube-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.youtube-link:hover {
    transform: scale(1.1);
}

.youtube-icon {
    font-size: 45px;
    color: #000;
    vertical-align: middle;
}

.youtube-link:hover .youtube-icon {
    color: #CC0000;
} 