.awc-container {
    background: #f2f2f2;
    padding: 20px;
    border-radius: 10px;
    max-width: 900px;
    margin: auto;
    font-family: Arial;
}

.awc-header {
    background: #66e0ff;
    padding: 15px;
    font-size: 22px;
    text-align: center;
    color: black;
    border-radius: 8px;
    margin-bottom: 15px;
}

textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 15px;
}

.awc-upload input {
    margin-bottom: 15px;
}

.awc-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.awc-results div {
    background: white;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
}

button {
    background: #66e0ff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 6px;
}