body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.site-index .jumbotron {
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
}

.issue-card {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.issue-card .card-header {
    font-weight: bold;
}

.priority-high {
    border-left: 4px solid #dc3545;
}

.priority-medium {
    border-left: 4px solid #ffc107;
}

.priority-low {
    border-left: 4px solid #28a745;
}

.priority-critical {
    border-left: 4px solid #dc3545;
    background-color: #f8d7da;
}

.status-open {
    color: #007bff;
}

.status-in-progress {
    color: #ffc107;
}

.status-closed {
    color: #28a745;
}

.label-badge {
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
}

.comment-section {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
}

.comment-item {
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    background-color: white;
    border-radius: 0.25rem;
    border-left: 3px solid #007bff;
}

.navbar-brand {
    font-weight: bold;
}

.btn-logout {
    color: rgba(255,255,255,.75);
    text-decoration: none;
}

.btn-logout:hover {
    color: rgba(255,255,255,1);
}

.alert {
    border-radius: 0.5rem;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.btn {
    border-radius: 0.375rem;
}

.card {
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.table {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
}

.table thead th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

.pagination {
    justify-content: center;
}

.page-link {
    color: #007bff;
}

.page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
} 