/* Landing page cards */
.landing-card {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.landing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Service gallery cards */
.service-card {
    transition: transform 0.15s, box-shadow 0.15s;
}
.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12) !important;
}

/* Widget builder canvas */
#widget-canvas {
    min-height: 200px;
    background: #f8f9fa;
    border-radius: 4px;
}

.widget-config-card {
    border-left: 4px solid #0d6efd;
    background: #fff;
}

.widget-config-card .remove-widget-btn {
    opacity: 0.5;
}
.widget-config-card .remove-widget-btn:hover {
    opacity: 1;
}

/* Widget responses on service pages */
.widget-response {
    max-height: 300px;
    overflow: auto;
}
.widget-response pre {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Admin table tweaks */
.btn-xs {
    padding: 0.15rem 0.4rem;
    font-size: 0.75rem;
}

/* Form field builder in widget config */
.input-field-row {
    background: #f1f3f5;
    border-radius: 4px;
    padding: 8px;
    margin-bottom: 4px;
}
