body {
            font-family: 'Roboto', sans-serif;
            background-color: #f5f5f5;
            color: #424242;
        }

        .container {
            margin-top: 30px;
        }

        .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #6200ea;
    padding: 20px;
    border-radius: 8px;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

        .header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
}

        .header .button-group {
    display: flex;
    gap: 15px; /* Espaço entre os botões */
}

.button-group .btn-secondary {
    background-color: #03dac6;
    border: none;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.button-group .btn-secondary:hover {
    background-color: #018786;
}

.logout-button {
    background-color: #ff5252;
    border: none;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.logout-button:hover {
    background-color: #ff1744;
}

        h2 {
            margin-top: 20px;
            color: #6200ea;
            font-weight: bold;
        }

        .btn-primary {
            background-color: #6200ea;
            border: none;
            padding: 10px 20px;
            color: #fff;
            border-radius: 50px;
            transition: background-color 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-primary:hover {
            background-color: #3700b3;
        }

        .btn-primary i {
            margin-right: 8px;
        }

        table.table {
            border-collapse: collapse;
            width: 100%;
        }

        table th, table td {
            padding: 15px;
            text-align: left;
        }

        table th {
            color: #6200ea;
            font-weight: bold;
        }

        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 15px; /* Espaçamento entre os ícones */
        }

        .action-buttons a {
            color: #6200ea;
            transition: color 0.3s ease;
            font-size: 24px;
        }

        .action-buttons a:hover {
            color: #3700b3;
        }

        .card {
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            background-color: white;
            padding: 20px;
        }