/* DO Pack Pricing Frontend Styles */

.do-pack-pricing-rules-wrapper {
    margin: 1.5em 0;
    border: 1px solid #e0e0e0;
    padding: 15px;
    border-radius: 5px;
    background-color: #f9f9f9;
    transition: opacity 0.3s ease-in-out;
}

.do-pack-pricing-title {
    margin-top: 0;
    font-size: 1.1em;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.do-pack-pricing-rules-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
}

.do-pack-pricing-rules-table th,
.do-pack-pricing-rules-table td {
    text-align: left;
    padding: 10px 8px;
    border-bottom: 1px solid #f0f0f0;
}

.do-pack-pricing-rules-table th {
    font-weight: 600;
    color: #555;
}

.do-pack-pricing-rules-table tbody tr:last-child td {
    border-bottom: none;
}

.do-pack-pricing-rules-container {
    display: block;
    position: relative;
    min-height: 20px; /* Prevent collapsing when empty */
}

/* Loading State */
.do-pack-pricing-rules-container.dopp-loading .do-pack-pricing-rules-wrapper {
    opacity: 0.5;
    pointer-events: none;
}

.do-pack-pricing-rules-container.dopp-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top-color: #777;
    border-radius: 50%;
    animation: dopp-spinner 0.6s linear infinite;
    z-index: 10;
}

@keyframes dopp-spinner {
    to {
        transform: rotate(360deg);
    }
}
