/* Provider Single Page Styles */

/* Single Image Display */
.puntr-single-image {
    margin-bottom: 30px;
}

.puntr-single-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Provider Details Box */
.puntr-provider-details-box {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
}

.puntr-provider-headline {
    font-size: 1.1em;
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

/* Provider Stats Grid */
.puntr-provider-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.stat-item {
    font-size: 0.95em;
    color: #333;
}

.stat-label {
    font-weight: 600;
    color: #1e2938;
}

/* Pricing Table */
.puntr-pricing-table {
    margin-bottom: 25px;
}

.puntr-pricing-table h4 {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #1e2938;
    font-weight: 600;
}

.puntr-pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.puntr-pricing-table td {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.puntr-pricing-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #2271b1;
    font-size: 1.1em;
}

/* Services List */
.puntr-services-list h4 {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #1e2938;
    font-weight: 600;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    background: #e0e7ff;
    color: #3730a3;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 500;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .puntr-provider-details-box {
        padding: 20px;
    }
    
    .puntr-provider-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .puntr-pricing-table td:last-child {
        font-size: 1em;
    }
}