body { background-color: #f8f9fa; }

.bug-card { transition: transform .1s, box-shadow .1s; cursor: pointer; }
.bug-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.1) !important; }

.bug-description { line-height: 1.7; color: #444; }

.type-card .form-check-label {
    cursor: pointer; padding: .5rem;
    border: 2px solid transparent; border-radius: .375rem; width: 100%; transition: border-color .15s;
}
.type-card .form-check-input:checked + .form-check-label {
    border-color: #0d6efd; background-color: rgba(13,110,253,.05);
}

.comment { border-left: 3px solid #dee2e6; padding-left: 1rem; }
.admin-comment { border-left-color: #ffc107; }

.attachment-card { transition: box-shadow .1s; }
.attachment-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,.12) !important; }
.attachment-thumb { height: 120px; object-fit: cover; border-radius: .5rem .5rem 0 0; }

.attachment-img-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: .5rem .5rem 0 0;
}
.attachment-img-wrapper img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    transition: transform .2s;
}
.attachment-img-wrapper:hover img { transform: scale(1.05); }
.attachment-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s;
}
.attachment-img-wrapper:hover .attachment-overlay { opacity: 1; }

.card { border-radius: .75rem !important; }
.form-control, .form-select, .btn { border-radius: .5rem; }
.navbar-brand small { font-size: .7em; }
