.agf-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.agf-field {
    margin-bottom: 15px;
}

.agf-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.agf-field select, 
.agf-field input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

button {
    background: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

button:hover {
    background: #45a049;
}

.agf-loading {
    text-align: center;
    padding: 20px;
}

.agf-loading .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.agf-products {
    margin-top: 20px;
}

.agf-product {
    padding: 15px;
    margin-bottom: 15px;
    background: #f9f9f9;
    border-left: 3px solid #4CAF50;
    border-radius: 4px;
}

.agf-product h4 {
    margin: 0 0 10px;
    color: #333;
}

.agf-product .price {
    font-weight: bold;
    color: #e91e63;
}

.agf-product a {
    display: inline-block;
    margin-top: 10px;
    color: #0066cc;
    text-decoration: none;
}

.agf-product a:hover {
    text-decoration: underline;
}

.agf-error {
    padding: 15px;
    background: #ffebee;
    border-left: 3px solid #f44336;
    color: #d32f2f;
}