.cqg-container {
    max-width: 600px;
    margin: 30px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cqg-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.cqg-form .cqg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
	padding-top: 12px;
}

.cqg-form input, .cqg-form textarea {
    width: 100% !important;
    padding: 10px 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
    font-size: 12px !important;
    transition: border 0.2s;
    margin-bottom: 0px !important;
}


.cqg-form input:focus,
.cqg-form textarea:focus {
    border-color: #0073aa;
    outline: none;
}

.cqg-button {
    display: block;
    margin: 0px;
    padding: 12px 30px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

.cqg-button:hover {
    background-color: #005f8d;
}

.cqg-result {
    text-align: center;
    margin-top: 30px;
}

.cqg-result img {
    width: 200px;
    height: 200px;
    border: 8px solid #f5f5f5;
    border-radius: 10px;
}

.cqg-result a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 600;
}

.cqg-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.cqg-clear {
    background-color: #ccc;
    color: #333;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

.cqg-clear:hover {
    background-color: #bbb;
}
