.feedback-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.feedback-bubble {
    background: rgb(43, 43, 43);
    color: goldenrod;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    text-decoration: none;
    font-weight: 500;
}

.feedback-bubble:hover {
    background: rgb(43, 43, 43);
    box-shadow: 0 4px 12px goldenrod;
    transform: translateY(-2px);
    border-color: var(--color-accent);
}

.feedback-bubble svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .feedback-container {
        bottom: 20px;
        right: 20px;
    }

    .feedback-bubble {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .feedback-bubble svg {
        width: 18px;
        height: 18px;
    }
}

/* Feedback Cards */
.feedback-card {
    background-color: rgb(43, 43, 43);
    border: 1px solid goldenrod;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.feedback-card:hover {
    box-shadow: 0 4px 12px #DAA520;
    transform: translateY(-2px);
    border-color: var(--color-accent);
}

.feedback-author {
    font-weight: 700;
    color: goldenrod;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feedback-text {
    color: #e0e0e0;
    line-height: 1.6;
    white-space: pre-line;
    margin-bottom: 1rem;
}

.feedback-response {
    background-color: rgb(93, 92, 92);
    margin-top: 1.5rem;
    padding-left: 1rem;
    border-left: 5px solid var(--color-success);
}

.feedback-response-label {
    color: #d8a41f;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.feedback-response-text {
    color: #030401;
    white-space: pre-line;
    line-height: 1.6;
}

.feedback-date {
    font-size: 14px;
    color: #d8a41f;
    margin-bottom: 8px;
    text-shadow:
    0.5px 0.5px 0 #000,
    -0.5px 0.5px 0 #000,
    -0.5px -0.5px 0 #000,
    0.5px -0.5px 0 #000;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #999;
}

.empty-state svg {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Modal Styles */
.bg-dark-secondary {
    background-color: rgb(43, 43, 43);
}
.modal-content {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header .btn-close:focus {
    box-shadow: 0 0 0 0.25rem rgb(43, 43, 43);
}

.form-control {
    background-color: rgb(93, 92, 92);
    border-color: goldenrod;
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
    background-color: rgb(43, 43, 43);
    border-color: goldenrod;
    color: white;
    box-shadow: 0 4px 12px goldenrod;
    transform: translateY(-2px);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.btn-primary {
    background-color: rgb(43, 43, 43);
    border-color: goldenrod;
    color: white;
}

.btn-primary:hover {
    background-color: rgb(93, 92, 92);
    border-color: goldenrod;
    color: white;
}

.btn-secondary {
    background-color: rgb(43, 43, 43);
    border-color: goldenrod;
    color: white;
}

.btn-secondary:hover {
    background-color: rgb(93, 92, 92);
    border-color: goldenrod;
    color: white;
}

/* Alert Styles */
.alert {
    background-color: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
    color: #10b981;
}

.alert-info {
    background-color: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    color: #3b82f6;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }

    .feedback-card {
        padding: 1rem;
    }

    main {
        min-height: calc(100vh - 250px);
    }

    .modal-dialog {
        margin: 1rem;
    }
    .form-label1 {
        color: goldenrod;
    }
}