/* GDC Bonsai Suggestion Plugin Styles */
.gdc-container {
    width: 100%;
    margin: 0 auto;
    padding: 25px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.gdc-logo { margin-bottom: 20px; }
.gdc-logo img { max-width: 100%; height: auto; }
.gdc-header { text-align: center; margin-bottom: 25px; }
.gdc-header h1 { font-size: 28px; color: #333; margin: 0 0 5px 0; }
.gdc-header p { font-size: 16px; color: #666; margin: 0; }
.gdc-upload-area { text-align: center; padding: 30px; border: 2px dashed #d0d0d0; border-radius: 8px; background-color: #f9f9f9; margin-bottom: 20px; position: relative; }
#gdc-image-preview-container { margin-top: 15px; position: relative; display: inline-block; }
#gdc-image-preview { max-width: 100%; max-height: 250px; border-radius: 8px; border: 1px solid #ddd; }
#gdc-delete-image { position: absolute; top: -10px; right: -10px; background: #fff; color: #333; border: 1px solid #ccc; border-radius: 50%; width: 28px; height: 28px; font-size: 20px; line-height: 26px; text-align: center; cursor: pointer; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.gdc-btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 25px; font-size: 16px; font-weight: 500; border: none; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; }
.gdc-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.gdc-btn-primary { background-color: #0073aa; color: #fff; }
.gdc-btn-primary:hover:not(:disabled) { background-color: #005a87; }
.gdc-btn svg { margin-right: 8px; }
.gdc-actions { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
.gdc-result-block {
    margin-top: 20px;
    padding: 20px;
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    min-height: 50px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}
.gdc-result-block.loading { display: flex; justify-content: center; align-items: center; }
.gdc-result-block h3 { margin-top: 0; font-size: 20px; color: #333; display: flex; align-items: center; text-align: left; }
.gdc-result-block h3 svg { margin-right: 10px; color: #0073aa; flex-shrink: 0; }
.gdc-result-block h4 {
    font-size: 16px;
    color: #333;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.gdc-result-block p, .gdc-result-block li { margin-bottom: 1em; }
.gdc-result-block strong { color: #1d2327; font-weight: 600; }
.gdc-result-block .keyword-icon {
    display: inline-flex;
    align-items: center;
    vertical-align: -4px;
    margin-right: 6px;
}
#gdc-suggestion-action-wrapper {
    margin-top: 20px;
    text-align: center;
}
.gdc-footer {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: center;
    color: #666666;
    font-size: 14px;
}
#gdc-qr-code-wrapper {
    margin-top: 15px;
}
.gdc-spinner { border: 3px solid rgba(255, 255, 255, 0.3); border-radius: 50%; border-top-color: #fff; width: 18px; height: 18px; animation: gdc-spin 1s ease-in-out infinite; margin-left: 10px; }
@keyframes gdc-spin { to { transform: rotate(360deg); } }
