/**
 * iCodes WordPress Integration Styles
 */

/* Make iCodes content blend with WordPress theme */
.icodes-content {
    font-family: inherit;
}

.icodes-content table {
    width: 100%;
    border-collapse: collapse;
}

.icodes-content img {
    max-width: 100%;
    height: auto;
}

/* Fix iCodes buttons */
.icodes-content input[type="submit"],
.icodes-content button {
    cursor: pointer;
}

/* Search suggestions */
#search_suggest {
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    z-index: 1000;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#search_suggest a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

#search_suggest a:hover {
    background: #f5f5f5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .icodes-content table {
        font-size: 14px;
    }
}
