/* Product Access Control Widget Styles */
.pac-widget {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
    margin: 15px 0;
}

.pac-product-button {
    background-color: #d1e7dd;
    color: #000;
    padding: 14px 25px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #badbcc;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pac-product-button:hover {
    background-color: #badbcc;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pac-widget {
        padding: 15px;
    }
    
    .pac-product-button {
        padding: 12px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .pac-widget {
        padding: 10px;
    }
    
    .pac-product-button {
        padding: 10px 15px;
        font-size: 14px;
    }
}