@charset "utf-8";
/* CSS Document */
:root {
            --primary-color: #0078d7;
            --secondary-color: #005fa3;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
            --info-color: #17a2b8;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
            --dark-gray: #343a40;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background-color: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            padding: 15px 0;
            margin-bottom: 30px;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo h1 {
            color: var(--primary-color);
            font-size: 24px;
        }
        
        .logo svg {
            width: 40px;
            height: 40px;
        }
        
        .user-info {
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
            margin-left: 750px;
        }
        
        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        .nav-menu {
            background-color: var(--primary-color);
        }
        
        .nav-container {
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }
        
        .nav-item {
            padding: 12px 20px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        
        .nav-item:hover {
            background-color: var(--secondary-color);
        }
        
        .nav-item.active {
            background-color: var(--secondary-color);
            font-weight: bold;
        }
        
        .card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 25px;
            margin-bottom: 25px;
        }


        
        
        .card-title {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            
        }

       




        

        
        
        .dashboard-summary {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .summary-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .summary-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 4px;
            width: 100%;
        }
        
        .summary-card.total::before {
            background-color: var(--primary-color);
        }
        
        .summary-card.open::before {
            background-color: var(--warning-color);
        }
        
        .summary-card.progress::before {
            background-color: var(--info-color);
        }
        
        .summary-card.completed::before {
            background-color: var(--success-color);
        }
        
        .summary-number {
            font-size: 36px;
            font-weight: bold;
            margin: 10px 0;
        }
        
        .summary-label {
            color: #666;
            font-size: 14px;
        }
        .search-filters form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px; /* Espaçamento entre os elementos */
            align-items: center;
        }
        
        .filter-group {
            display: flex;
            flex-direction: column;
        }
        
        .filter-group select,
        .filter-group input {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            min-width: 180px; /* Define um tamanho mínimo */
        }
        
        .btn1 {
            padding: 10px 15px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            align-self: flex-end; 
            height: 42px;
        }


        .btn2 {
            padding: 10px 15px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            align-self: flex-end; 
            height: 55px;
            text-decoration: none;
        }




        .btn3 {
            padding: 10px 15px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            align-self: flex-end; 
            height: 45px;
            text-decoration: none;
        }






        
        .btn4 {
            padding: 10px 15px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            align-self: flex-end; 
            height: 45px;
            text-decoration: none;
        }

        .btn5 {
            padding: 10px 15px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            align-self: flex-end; 
            height: 45px;
            width: 75px;
            text-decoration: none;
        }

        .btn6 {
            padding: 10px 15px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            align-self: flex-end; 
            height: 55px;
            width: 121px;
            text-decoration: none;
        }

        .btn7 {
            padding: 10px 15px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            align-self: flex-end; 
            height: 35px;
            width: 113px;
            text-decoration: none;
        }

        .btn8 {
            padding: 10px 15px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            align-self: flex-end; 
            height: 70px;
            width: 170px;
            text-decoration: none;
        }



        
      .btn9{
        background-color: #007bff;  
        color: white;              
        padding: 15px 32px;        
        font-size: 16px;           
        border: none;               
        border-radius: 5px;         
        cursor: pointer;            
        transition: background-color 0.3s ease;  
    }

    


    .btn10 {
        background-color: #007bff;
        color: white;
        border: none;
        padding: 10px 20px;
        font-size: 16px;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    
    
    .logout-button:hover {
        background-color: #007bff;
    }
        
        
        .btn-outline1 {
      
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
            height: 45px;
            width: 50px;
            background-color: #007bff;
            color: white;
            border-radius: 10px;
        }
        
        .btn-outline:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        .ticket-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }
        
        .ticket-table th {
            background-color: var(--light-gray);
            padding: 12px 15px;
            text-align: left;
            font-weight: 600;
            border-bottom: 2px solid #ddd;
            margin-top: 10px;
        }
        
        .ticket-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
        }
        
        .ticket-table tr:hover {
            background-color: var(--medium-gray);
        }
        
        .table-actions {
            display: flex;
            gap: 10px;
        }
        
        .ticket-id {
            font-weight: 500;
            color: var(--primary-color);
        }
        
        .badge {
            display: inline-block;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .badge-new {
            background-color: var(--primary-color);
            color: white;
        }
        
        .badge-open {
            background-color: var(--warning-color);
            color: #212529;
        }
        
        .badge-progress {
            background-color: var(--info-color);
            color: white;
        }
        
        .badge-resolved {
            background-color: var(--success-color);
            color: white;
        }
        
        .badge-cancelled {
            background-color: var(--dark-gray);
            color: white;
        }
        
        .badge-waiting {
            background-color: var(--warning-color);
            color: #212529;
        }
        
        .badge-urgent {
            background-color: var(--danger-color);

            color: white;
        }
        
        .badge-medium {
            background-color: var(--warning-color);
            color: #212529;
        }
        
        .badge-low {
            background-color: var(--info-color);
            color: white;
        }
        
        .priority-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 5px;
        }
        
        .priority-high {
            background-color: var(--danger-color);
        }
        
        .priority-medium {
            background-color: var(--warning-color);
        }
        
        .priority-low {
            background-color: var(--info-color);
        }
        
        .timeline {
            position: relative;
            margin: 20px 0;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 16px;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: #ddd;
        }
        
        .timeline-item {
            position: relative;
            padding-left: 45px;
            padding-bottom: 20px;
        }
        
        .timeline-dot {
            position: absolute;
            left: 10px;
            top: 0;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: var(--primary-color);
        }
        
        .timeline-content {
            background-color: var(--light-gray);
            border-radius: 6px;
            padding: 15px;
            position: relative;
        }
        
        .timeline-content::before {
            content: '';
            position: absolute;
            left: -10px;
            top: 10px;
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-right: 10px solid var(--light-gray);
        }
        
        .timeline-date {
            font-size: 12px;
            color: #666;
            margin-bottom: 5px;
        }
        
        .timeline-title {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .ticket-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .detail-group {
            margin-bottom: 15px;
        }
        
        .detail-label {
            font-size: 14px;
            color: #666;
            margin-bottom: 5px;
        }
        
        .detail-value {
            font-weight: 500;
        }
        
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 15px;
        }
        
        .gallery-image {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 4px;
            cursor: pointer;
        }
        
        .action-buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .ticket-comment {
            display: flex;
            margin-top: 20px;
        }
        
        .ticket-comment textarea {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            resize: vertical;
            min-height: 80px;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 5px;
        }
        
        .page-item {
            display: inline-block;
            min-width: 32px;
            height: 32px;
            line-height: 32px;
            text-align: center;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .page-item:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }
        
        .page-item.active {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 1000;
            overflow-y: auto;
        }
        
        .modal-content {
            background-color: white;
            margin: 50px auto;
            max-width: 800px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            position: relative;
        }
        
        .modal-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .modal-close {
            font-size: 24px;
            cursor: pointer;
            color: #666;
        }
        
        .modal-body {
            padding: 20px;
        }
        
        .modal-footer {
            padding: 15px 20px;
            border-top: 1px solid #eee;
            text-align: right;
        }
        
        .tab-navigation {
            display: flex;
            border-bottom: 1px solid #ddd;
            margin-bottom: 20px;
        }
        
        .tab-link {
            padding: 10px 20px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
        }
        
        .tab-link.active {
            border-bottom-color: var(--primary-color);
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        @media (max-width: 992px) {
            .dashboard-summary {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .ticket-details {
                grid-template-columns: 1fr;
            }
            
            .search-filters {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .search-filters {
                grid-template-columns: 1fr;
            }
            
            .ticket-table {
                font-size: 14px;
            }
            
            .ticket-table th:nth-child(3),
            .ticket-table td:nth-child(3) {
                display: none;
            }
            
            .dashboard-summary {
                grid-template-columns: 1fr;
            }
        }
