/* Full-width widget container */
.uidc-widget {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 2rem auto;
    font-family: inherit;
}

/* Card styling - inherits from theme */
.uidc-card {
    background: var(--wp--preset--color--base, #fff);
    border: 1px solid var(--wp--preset--color--contrast-2, rgba(0, 0, 0, 0.1));
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Question text */
.uidc-question {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--wp--preset--color--contrast, inherit);
    line-height: 1.4;
}

/* Options container */
.uidc-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Option buttons - inherit theme link/button colors */
.uidc-btn {
    background: #dd3333 !important;
    color: #fff !important;
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.uidc-btn:hover,
.uidc-btn:focus {
    background: #b82828 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    outline: none;
}

.uidc-btn:active {
    transform: translateY(0);
}

/* Suggestions section */
.uidc-sug-title {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--wp--preset--color--contrast-2, #666);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.uidc-sug-list {
    margin: 0;
    padding-left: 1.5rem;
    list-style: disc;
}

.uidc-sug-list li {
    margin-bottom: 0.5rem;
}

.uidc-sug-list a {
    color: #dd3333 !important;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.uidc-sug-list a:hover {
    color: #b82828 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .uidc-widget {
        margin: 1rem auto;
    }
    
    .uidc-card {
        padding: 1.5rem;
    }
    
    .uidc-question {
        font-size: 1.125rem;
    }
    
    .uidc-btn {
        padding: 0.625rem 1rem;
        font-size: 0.9375rem;
    }
}
