.fluffer-form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: #000000;
    border-radius: 5px;
}

.fluffer-form-group {
    margin-bottom: 15px;
}

.fluffer-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.fluffer-form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.fluffer-form-group button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.fluffer-form-group button:hover {
    background: #005177;
}

.fluffer-error-message {
    color: #dc3232;
    font-size: 0.9em;
    margin-top: 5px;
}

#fluffer-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

#fluffer-message.success {
    background: #46b450;
    color: white;
}

#fluffer-message.error {
    background: #dc3232;
    color: white;
}

.fluffer-list-container {
    margin: 20px 0;
}

.fluffer-list-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.fluffer-list-table th,
.fluffer-list-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.fluffer-list-table th {
    background-color: #f2f2f2;
}

.fluffer-export-buttons {
    margin-bottom: 15px;
}

.fluffer-export-buttons .button {
    margin-right: 10px;
}