/**
 * White Label Poker Plugin Styles
 */

/* Container for the poker iframe */
.wlp-poker-container {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden; /* Ensures border-radius is respected */
}

/* Optional: Add a logo above the iframe if a logo URL is set */
.wlp-poker-logo {
    text-align: center;
    padding: 10px;
    background-color: #f5f5f5;
}
.wlp-poker-logo img {
    max-width: 100%;
    height: auto;
}

/* We can use the colors from settings via JavaScript, but for CSS we set defaults */
/* These can be overridden by inline styles or via JS if needed */

/* Example of how we might use the colors (if we add dynamic styling via JS) */
/* .wlp-poker-container { border-color: var(--wlp-primary-color); } */
/* .wlp-poker-logo { background-color: var(--wlp-secondary-color); } */