        .feedback-system {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            color: #e0e0e0;
            margin: 0;
            padding: 20px;
        }
        .feedback-system .container {
            max-width: 800px;
            margin: 0 auto;
        }
        .feedback-system .feedback-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            flex-direction: row-reverse;
        }
        .feedback-system .feedback-card {
            background-color: #1f1f1f;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            flex: 1 1 calc(33.333% - 30px);
            box-sizing: border-box;
        }
        .feedback-system .feedback-card p {
            margin: 0 0 15px; /* Added margin-bottom to create space between comment and name */
        }
        .feedback-system .feedback-card h3 {
            display: inline-block; /* Make the name and stars in one line */
            margin: 0;
            font-size: 1.2em;
            color: #007bff;
        }
        .feedback-system .feedback-card .stars {
            display: inline-block; /* Make the stars align with the name */
            margin-left: 10px; /* Space between name and stars */
            color: #007bff;
        }
        .feedback-system .form-container {
            background-color: #1f1f1f;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        .feedback-system input, .feedback-system textarea, .feedback-system button {
            width: 100%;
            margin: 10px 0;
            padding: 10px;
            border: none;
            border-radius: 4px;
        }
        .feedback-system input, .feedback-system textarea {
            background-color: #2b2b2b;
            color: #e0e0e0;
        }
        .feedback-system button {
            background-color: #007bff;
            color: #fff;
            font-weight: bold;
            cursor: pointer;
        }
        .feedback-system button:hover {
            background-color: #0056b3;
        }