.feedback-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.feedback-header h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.feedback-header p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255,255,255,0.7);
    padding: 10px 15px;
    border-radius: 15px;
}

.feedback-form {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.feedback-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,107,139,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.form-group {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background-color: rgba(255,255,255,0.9);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b8b;
    box-shadow: 0 0 0 3px rgba(255,107,139,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #2c3e50;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,107,139,0.3);
}

.feedback-list-section {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feedback-list-section h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #ff6b8b;
    text-align: center;
    font-weight: 600;
}

.feedback-list-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border: 2px solid #f0f0f0;
}

.feedback-stats {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.feedback-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feedback-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #ff6b8b 0%, #ff8fab 100%);
}

.feedback-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.feedback-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.feedback-type {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.feedback-type::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: currentColor;
}

.type-bug {
    background: #fff3f3;
    color: #dc3545;
}

.type-suggestion {
    background: #f0f8ff;
    color: #007bff;
}

.type-other {
    background: #f8f9fa;
    color: #6c757d;
}

.feedback-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.feedback-time {
    font-size: 12px;
    color: #999;
}

.feedback-user {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.feedback-content {
    color: #333;
    line-height: 1.6;
    margin-bottom: 0;
    padding-left: 12px;
    border-left: 2px solid #f0f0f0;
}

.empty-feedback {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}
