#ps_checkout-payment-method-logo-block-container {
  display: none;
}
#category #products .product-title a, #products .product-description h2.product-title a {
    font-size: 1.1em;
}
#products .product-description {
    margin-top: -1em;
}
.product-prices .tax-shipping-delivery-label {
    font-size: .89125rem !important;
    color: #333333;
}
.product-prices .tax-shipping-delivery-label .delivery-information {
    font-weight: 600 !important;
}
.product-prices .tax-shipping-delivery-label .delivery-information::before {
    content: none;
}
.contents-container {
    margin: 20px 0;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.contents-header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-align: left;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.contents-list {
    margin-bottom: 20px;
}

.contents-list ol li {
    padding: 5px 0;
    font-size: 16px;
    color: #555;
}

#song-search {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contents-pagination {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 56px;
    margin-top: 20px;
    list-style: none;
}

.contents-pagination .page-item {
    margin: 0 2px;
}

.contents-pagination .page-item-prev,
.contents-pagination .page-item-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.contents-pagination .page-item-prev { left: 0; }
.contents-pagination .page-item-next { right: 0; }

.contents-pagination .page-link {
    display: inline-block;
    min-width: 36px;
    padding: 5px 10px;
    color: #24b9d7;
    background: #fff;
    text-align: center;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 3px;
    font: inherit;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.contents-pagination .page-link:hover:not(:disabled) {
    background-color: #f1f1f1;
    border-color: #bbb;
}

.contents-pagination .page-item.active .page-link {
    font-weight: bold;
    color: #fff;
    background-color: #24b9d7;
    border-color: #24b9d7;
}

.contents-pagination .page-item.disabled .page-link {
    color: #aaa;
    background-color: #f6f6f6;
    border-color: #eee;
    cursor: default;
    pointer-events: none;
}

.contents-pagination .page-item.ellipsis .page-link {
    border: none;
    background: transparent;
    color: #777;
    cursor: default;
    pointer-events: none;
}

.product-feature-table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
    margin: auto;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.product-feature-table tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.product-feature-table th, .product-feature-table td {
    padding: 12px 10px;
}

.product-feature-table th {
    font-weight: bold;
    text-align: left;
    background-color: transparent;
}
/* Teacher Profiles Section */
.teacher-profile-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.teacher-profile {
    width: 100%;
    max-width: 200px;
    text-align: center;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 300px;
}

.teacher-profile:hover {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

/* Image Container */
.teacher-profile-image-wrapper {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    height: 60%;
    overflow: hidden;
}

/* Image Styling */
.teacher-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Teacher Names */
.teacher-profile-name {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    color: #2b2b2b;
}

.teacher-profile-instrument {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

/* Call-to-Action Button Styling */
.forsyth-cta-button {
    display: inline-block;
    padding: 8px 20px;
    background-color: #2c9ffd;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 20px auto;
}

.forsyth-cta-button:hover {
    background-color: #218e53;
}