
.gcc-container {
    max-width: 700px;
    margin: 20px auto;
    padding: 10px;
    font-family: "Times New Roman", Times, serif;
    background-color: #f2f2f2;
    border: 1px solid #ccc;
}

.gcc-input {
    border: 1px solid #999;
    min-height: 200px;
    padding: 10px;
    outline: none;
    background: white;
    border-radius: 2px;
    font-size: 16px;
    white-space: pre-wrap;
    font-family: "Times New Roman", Times, serif;
}

.gcc-input[placeholder]:empty:before {
    content: attr(placeholder);
    color: #999;
}

.gcc-buttons {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.gcc-btn {
    padding: 8px 16px;
    border: 1px solid #999;
    cursor: pointer;
    border-radius: 3px;
    font-size: 14px;
    font-family: "Times New Roman", Times, serif;
    background-color: #eee;
    transition: background 0.2s;
}

.gcc-btn.green {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.gcc-btn.green:hover {
    background-color: #45a049;
}

.gcc-btn:hover {
    background-color: #ddd;
}

.gcc-error {
    background-color: #ffe5e5;
    color: red;
    cursor: pointer;
    border-bottom: 2px dotted red;
    font-family: "Times New Roman", Times, serif;
}

.gcc-popup {
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    font-family: "Times New Roman", Times, serif;
    box-shadow: 0 0 3px rgba(0,0,0,0.3);
    z-index: 1000;
    max-width: 250px;
    border-radius: 2px;
    overflow: auto;
    max-height: 180px;
    font-size: 15px;
}

.gcc-suggestion {
    padding: 6px 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    font-family: "Times New Roman", Times, serif;
}

.gcc-suggestion:hover {
    background-color: #cce5cc;
}

.gcc-suggestion.ignore {
    background: #f9f9f9;
    color: #555;
    font-style: italic;
}
