/* Feedback Center Plugin - Bootstrap Card Style */

.fr-requests {
    max-width: 900px;
    margin: 30px auto;
    background: #f9f9f9;
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    font-family: "Segoe UI", Arial, sans-serif;
}

.fr-requests h2 {
    font-size: 1.7em;
    margin-bottom: 18px;
    color: #222;
}

.fr-requests-list {
    /* Bootstrap grid is used for spacing */
}

.fr-request-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px 0 rgba(90,120,90,0.06);
    margin-bottom: 0;
    padding: 0;
    transition: box-shadow .18s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.fr-request-item:hover {
    box-shadow: 0 5px 22px 0 rgba(90,120,90,0.13);
}

.fr-card-thumb {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.fr-request-title {
    font-size: 1.25em;
    color: #5b9738;
    font-weight: bold;
    margin-bottom: 2px;
}

.fr-request-priority {
    font-size: 0.98em;
    color: #888;
    margin-right: 12px;
}

.fr-request-content {
    margin: 8px 0 11px 0;
    color: #333;
}

.fr-status {
    margin-bottom: 7px;
    display: inline-block;
    padding: 3px 11px;
    border-radius: 12px;
    font-size: 0.98em;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 3px 0 0 0;
}

.fr-status-nieuw {
    background: #ededed;
    color: #555;
    border: 1px solid #dadada;
}
.fr-status-in-behandeling {
    background: #dbeafe;
    color: #1456b4;
    border: 1px solid #90cdf4;
}
.fr-status-afgewezen {
    background: #ffeaea;
    color: #c82c1c;
    border: 1px solid #f5b9b9;
}
.fr-status-uitgevoerd {
    background: #eafbe7;
    color: #2c8c4c;
    border: 1px solid #a6f3c2;
}

/* Bootstrap btn-warning override for upvote btn */
.fr-upvote-btn {
    border-radius: 20px;
    font-size: 1em;
    font-weight: 500;
    transition: background .2s;
    margin-top: 8px;
    box-shadow: 0 2px 6px rgba(241,173,95,0.08);
    border: none;
    background: #f1ad5f;
    color: #222;
}
.fr-upvote-btn.btn-warning:hover,
.fr-upvote-btn:hover {
    background: #b97f3c;
    color: #222;
}

/* Comments */
.fr-comments {
    margin-top: 15px;
    background: #f4f6fa;
    padding: 10px 16px;
    border-radius: 7px;
    font-size: 0.96em;
}
.fr-comment {
    margin-bottom: 7px;
}

/* Knop en formulier */
#fr-new-request-btn {
    display: inline-block;
    margin-bottom: 18px;
    background: #5b9738;
    color: #fff;
    padding: 7px 16px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(51,85,238,0.10);
    transition: background .2s;
}
#fr-new-request-btn:hover {
    background: #406e25;
    color: #fff;
}

#fr-new-request-form {
    background: #eef4ff;
    padding: 0;
    border-radius: 7px;
    margin-bottom: 22px;
}

#fr-request-form input[type="text"],
#fr-request-form textarea,
#fr-request-form select {
    width: 100%;
    padding: 7px 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1em;
    box-sizing: border-box;
}

#fr-request-form button[type="submit"] {
    background: #3355ee;
    color: #fff;
    border: none;
    border-radius: 13px;
    padding: 7px 20px;
    font-size: 1em;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(51,85,238,0.08);
}
#fr-request-form button[type="submit"]:hover {
    background: #223399;
}

/* Responsive fix for cards on mobile */
@media (max-width: 600px) {
    .fr-requests {
        padding: 8px 2vw;
    }
    .card-body {
        padding: 1.2rem 0.7rem;
    }
    .fr-card-thumb {
        max-width: 90px;
        max-height: 90px;
    }
}
.fr-card-header {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    font-size: 0.8em;
}