        :root {
            --primary-color: #667eea;
            --secondary-color: #6c757d;
            --success-color: #28a745;
        }

        body {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 40px 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .bug-report-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .card-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
            color: white;
            border-radius: 15px 15px 0 0 !important;
            padding: 25px;
        }

        .card-header h2 {
            margin: 0;
            font-weight: 600;
        }

        .card-header p {
            margin: 10px 0 0 0;
            opacity: 0.9;
        }

        .card-body {
            padding: 30px;
        }

        .form-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .form-control,
        .form-select {
            border-radius: 8px;
            border: 2px solid #e0e0e0;
            padding: 12px;
            transition: all 0.3s ease;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem #667eea;
        }

        textarea.form-control {
            min-height: 150px;
        }

        .btn-submit {
            background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
            border: none;
            padding: 14px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
            width: 100%;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px #667eea;
        }

        .info-badge {
            background-color: #e9e9e9;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 25px;
        }

        .info-badge strong {
            color: var(--primary-color);
        }

        .required-field::after {
            content: " *";
            color: var(--primary-color);
        }

        .file-upload-wrapper {
            position: relative;
            overflow: hidden;
        }

        .file-upload-label {
            display: block;
            padding: 12px;
            background-color: #f8f9fa;
            border: 2px dashed #dee2e6;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .file-upload-label:hover {
            background-color: #e9ecef;
            border-color: var(--primary-color);
        }

        .file-upload-label i {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 8px;
        }

        #file-name {
            margin-top: 10px;
            font-size: 14px;
            color: #666;
        }

        /* Added styles for search section */
        .search-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

        .info-badge h6 {
            font-weight: 600;
            margin-bottom: 5px;
            color: #666666;
        }

        .search-input-group {
            display: flex;
            gap: 10px;
        }

        .search-input-group input {
            flex: 1;
        }

        .btn-search {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            color: white;
            transition: all 0.3s ease;
        }

        .btn-search:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
            color: white;
        }

        .status-badge {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .status-novo {
            background-color: #17a2b8;
            color: white;
        }

        .status-em-analise {
            background-color: #ffc107;
            color: #333;
        }

        .status-resolvido {
            background-color: #28a745;
            color: white;
        }

        .status-fechado {
            background-color: #6c757d;
            color: white;
        }

        .separador {
            height: 5px;
            background: #667eea;
            border-radius: 100px;
            width: 100%;
            margin-bottom: 50px;
        }

        .separador2 {
            height: 2px;
            background: #f9f9f9;
            border-radius: 100px;
            width: 100%;
            margin-top: 25px;
            margin-bottom: -25px
        }
